Sean O'Rourke:
# On Wed, 4 Sep 2002, Peter Haworth wrote:
# > Having the iteration done in the bytecode could make this simpler, 
# > although at the expense of needing more bytecode.
# 
# And fewer temporaries, by translating this:
# 
#     @a = @b ^+ @c ^+ @d;
# 
# into this:
# 
#     for @a; @b; @c ; @d -> $a, $b, $c, $d is rw {
#       $d = $a + $b + $c;
#     }

What if (say) @b is a two-dimensional array?

--Brent Dax <[EMAIL PROTECTED]>
@roles=map {"Parrot $_"} qw(embedding regexen Configure)

"In other words, it's the 'Blow up this Entire Planet and Possibly One
or Two Others We Noticed on our Way Out Here' operator."
    --Damian Conway

Reply via email to