in reply to Playing with Perl 6 (under Windows) - How to?
You can also build parrot and try out Rakudo. Afaict it's supposed to work both under cygwin and "native" windows (I know that jonathan mostly develops under windows, so it must work somehow ;-). For cygwin parrot is also pre-packaged.
Rakudo isn't as feature complete as pugs, but it's being worked on, and continually improves. Problems with rakudo should be reported to rakudobug@perl.org If you don't want to build anything at all, and only test small snippets, you can also use your favourite IRC client, connect to irc.freenode.org, and /msg the bot p6eval, like this:
/msg p6eval pugs: say "hi"; /msg p6eval rakudo: say "hi";
The general syntax is $implementation: $code, where $implementation is one of pugs|rakudo|elf|kp6|nqp|pixie|yap6. If you chose perl6 as $implementation, it runs your program with elf, pugs and rakudo.
Problems with p6eval should be reported via IRC to moritz_ (aka me ;-)
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Playing with Perl 6 (under Windows) - How to?
by blazar (Canon) on Jul 23, 2008 at 20:28 UTC | |
by moritz (Cardinal) on Jul 23, 2008 at 20:37 UTC |