# New Ticket Created by "Graciliano M. P."
# Please include the string: [perl #27814]
# in the subject line of all future correspondence about this issue.
# <URL: http://rt.perl.org:80/rt3/Ticket/Display.html?id=27814 >
This syntax won't work for array definition:
my @l = ('a' , 'b' , 'c') ; ## this is ok.
@l = (1 , 2 ) ; ## this is ok.
@l = (2) ; ## this is NOT ok.
Soo, when setting an array with ONE value doesn't work!
Also we can't set HASHes yet!
I think that now is time to add syntax to Perl6, since parrot has resources
for that now.
Tested in parrot-0.1.0 (last release) on Win32.
Regards,
Graciliano M. P.