Hello,
the -V option from the program languages/perl6/perl6
don't work as it should.
> perl6 -V
perl6 driver 0.1.1
error:imcc:main No source file specified
I think the output is not what the author of the program
want.
The attached file fixes the typo.
Gerd
Index: parrot/languages/perl6/perl6 =================================================================== RCS file: /cvs/public/parrot/languages/perl6/perl6,v retrieving revision 1.46 diff -u -r1.46 perl6 --- parrot/languages/perl6/perl6 9 Oct 2004 12:07:55 -0000 1.46 +++ parrot/languages/perl6/perl6 12 Nov 2004 13:02:55 -0000 @@ -202,7 +202,7 @@ # print version of parts and exit sub version { print "perl6 driver $VERSION\n\n"; - system("$PARROT -v"); + system("$PARROT -V"); exit(0); }