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
# 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 -