2
votes
I know Perl 5. What are the advantages of learning Perl 6, rather than moving to Python?
Python has one huge advantage: it's implemented, there's a rather stable compiler for it.
Perl 6 is a rather visionary language, and not yet anywhere nearly stable enough for production. Bu …
9
votes
What features of Perl 6 are you the most excited about?
Extensibility.
Rules+grammars, junctions, good OO and so on are really great features, but the essence of Perl 6 is that it is designed for extensibility. We are no super-heroes, we don't k …
6
votes
Does Perl 6 make any promises about the order alternations will be used?
To put it only a few words: the alternatives should be matched (at least notionally) in parallel, and the longest match wins. If you want sequential alternations, you can use the double bar ||, whi …
5
votes
Where Can I Find Demo/Sample Code For Perl 6?
Please check out the perl6-examples repository from http://github.com/perl6/perl6-examples/tree/master, it contains m …
