On Wed, 10 Oct 2001 14:23:33 -0700, Colin Meyer wrote: >> > Does this mean that >> > >> > @a ^+= @b; >> > >> > will add every value of @b to every value of @a?
>What I'd expect is more like:
>
> foreach my $elem (@a) {
> $elem ^+= @b;
> }
>
If you want that effect, apply "scalar" on the RHS.
--
Bart.
