Re: [perl #62198] Rakudo: array and hash elements don't interpolate into strings

2009-01-12 Thread Carl Mäsak
Markus Laker (>): > Scalar variables interpolate, but array and hash elements don't: > > m...@edward:~$ perl6 -e 'my $a = 1; say "$a"' > 1 > m...@edward:~$ perl6 -e 'my @a = 1; say "@a[0]"' > @a[0] > m...@edward:~$ perl6 -e 'my @a = 1; say "@a[]"' > @a[] > m...@edward:~$ perl6 -e 'my %h = (one => 1

[perl #62198] Rakudo: array and hash elements don't interpolate into strings

2009-01-11 Thread via RT
# New Ticket Created by Markus Laker # Please include the string: [perl #62198] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=62198 > Scalar variables interpolate, but array and hash elements don't: m...@edward:~$ perl6 -