On Wed, Oct 10, 2001 at 02:23:33PM -0700, Colin Meyer wrote:
[ @a ^+= @b ]
> What I'd expect is more like:
>
> foreach my $elem (@a) {
> $elem ^+= @b;
> }
Hrm. Why would you expect that when you'd have written as you just
did? Would you also expect
@a = @b ^+ @c;
to mean
@a = (); for (@b) { push @a, $_ ^+ @c; }
?
-Scott
--
Jonathan Scott Duff
[EMAIL PROTECTED]
