On Thu Jun 17 23:24:28 2010, cognominal wrote:
> > my @a=<1 2 3>; @a>>.map: ( '(' ~ $^a ~ ')' )
> Lexical '$a' not found
We've definitely backslid here:
$ ./perl6
> my @a=<1 2 3>; @a>>.map: ( '(' ~ $^a ~ ')' )
Segmentation fault
> > my @a=<1 2 3>; @a>>.map: { '(' ~ $^a ~ ')' } # correct progra
# New Ticket Created by Stephane Payrard
# Please include the string: [perl #75844]
# in the subject line of all future correspondence about this issue.
# http://rt.perl.org/rt3/Ticket/Display.html?id=75844 >
> my @a=<1 2 3>; @a>>.map: ( '(' ~ $^a ~ ')' )
Lexical '$a' not found
> my @a=<1 2 3