use v6-pugs

fglock on 2006-06-20T13:39:06

Today I plan to rename Pugs-Grammar-Perl6 to Pugs-Compiler-Perl6, and start adding the glue code to make it work.

The first goal is to allow perl 5 to execute this:

use v6-pugs; "hello, world".say;

This should either execute immediately, if called with '-e', or create a .pmc file containing:

print "hello, world", "\n";

url: http://svn.openfoundry.org/pugs/misc/pX/Common/

The same code could be compiled to use Inline::C instead of plain perl.

update: the module is now called 'P6.pm', because 'v6' didn't work in perl 5.

update 2: the module is finally named 'v6.pm', but it is used 'v6-pugs' - and it works fine - thanks Audrey!


v6.pm

audreyt on 2006-06-21T00:47:25

...would work on "use v6-pugs" but not "use v6" I think, no?