Some power of Mystery dragged me into hacking v6.pm over the weekend. It now passes 785 tests from the pugs test suite.
It's a very interesting process to make the tests pass, and in fact it's quite trivial most of the time. It is also a great chance to learn Perl6 - by implementing it!
If you have a few spare hours and want to have some fun, in the meantime helping out the perl6 project and reusing your perl5 skills, you can start with the parsed but failed tests - they have perl5 version of the perl6 code generated in the .tc file. To run the test, checkout the latest pugs and simply do
make build_perl5; perl util/src_to_blib.plThere might be a few modules missing, install them from CPAN. You will see the tc files after you run the tests. I think subroutines/
util/prove6 t/01-sanity
you can also see the test output at the output, and identify what fails to parse at all. Starting with t/statements/ might be a good idea.
And, of course, get on irc.freenode.net #perl6, see you there!
I'll poke around and think about a solution for this.perl Makefile.PL
*** Probing configuration (please ignore any warnings)...
*** Cannot find a runnable 'ghc' from path.
*** Please install GHC (6.4.1 or above) from http://haskell.org/ghc/.
Re:Unfortunately, ghc is falsey required
markjugg on 2006-07-25T22:30:55
Ok, I just committed a first stab at "./make_build_perl5", which seems to run the same commands needed, without requiring GHC.