# New Ticket Created by  Moritz Lenz 
# Please include the string:  [perl #78056]
# in the subject line of all future correspondence about this issue. 
# <URL: http://rt.perl.org/rt3/Ticket/Display.html?id=78056 >


works fine directly:

$ cat args.pl
say @*ARGS.perl;
say @*ARGS.join('|');
$ ./perl6 args.pl foo bar 123
["foo", "bar", "123"]
foo|bar|123

# but beware of compilation:
$ ./perl6 --target=pir args.pl > args.pir
$ ./parrot_install/bin/parrot args.pir foo bar
[]

$

Compiled to pbc or to an executable it doesn't work either.

Found by Grimnir_++ on #perl6.

Cheers,
Moritz

Reply via email to