>    foreach @bigarray {
   >            yield (push @array1, $_);
   >            yield (push @array2, $_);
   >            yield (push @array3, $_);
   >            push @array4, $_;
   >    };

Except that C<yield> is like C<return> and breaks out of the current
*subroutine*, not the current block.

Damian

Reply via email to