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 (which may or may not wait
for us to start using more STD.pm-like parsing).
However, curly interpolation *does* currently work, so one can do
the following instead:
> my @a = < 1 2 3 >; say "@a = [EMAIL PROTECTED]";
@a = 1 2 3
Pm