#!perl6 use v6; my $list = \'a\' .. \'f\'; sub my_function( $list ) { for ^$list.elems -> $e { $li开发者_如何学Gost[$e].say;
How can I execute an external command and capture its output in Perl6? Perl5-style back-ticks don\'t seem to work:
Rakudo: Is there a place where all the fe开发者_StackOverflow中文版atures that don\'t yet work are listed?http://rakudo.org/status shows a list of things, but it\'s hard to keep it up-to-date. The big
I just built Rakudo and Parrot so that I could play with it and get started on learning Perl 6.I downloaded the Perl 6 book and happily typed in the first demo program (the tennis tournament example).
Trying the -v switch, I get the parrot svn revision: $ perl6 -v This compiler is built with the Parrot Compiler Toolkit, parrot revision 45822.
开发者_C百科The simplest grammar usage gives me complation error. use v6; grammar Foo { token bar { \\w+ }