Re: [perl #58246] Arrays not interpolating correctly

2008-08-22 Thread Patrick R. Michaud
On Fri, Aug 22, 2008 at 07:05:00AM -0700, Clinton Gormley wrote: > > my @a = < 1 2 3 >; > say "@a[]"; > > "@a[]" > > Broken in version 29834 Correct, rakudo doesn't yet know how to interpolate arrays or hashes in double-quoted strings. This requires a change to the quote expression parser (whi

[perl #58246] Arrays not interpolating correctly

2008-08-22 Thread via RT
# New Ticket Created by Clinton Gormley # Please include the string: [perl #58246] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=58246 > my @a = < 1 2 3 >; say "@a[]"; > "@a[]" Broken in version 29834 clint