# New Ticket Created by Richard Hainsworth # Please include the string: [perl #67450] # in the subject line of all future correspondence about this issue. # <URL: http://rt.perl.org/rt3/Ticket/Display.html?id=67450 >
perl6
> my @x=1,2,3,4; my @z; for @x { @z[+*] = $_ }; @z.perl.say
[4]
> my @x=1,2,3,4; my @z; for @x { @z...@z] = $_ }; @z.perl.say
[1,2,3,4]
