Tagged Questions
18
votes
4answers
1k views
What performance increases can we expect as the Perl 6 implementations mature?
Each time I have downloaded a new copy of Rakudo Perl 6, I have run the following expression just to get an idea of its current performance:
say [+] 1 .. 100000;
And the speeds have been ...
8
votes
2answers
188 views
Rakudo (Perl6): What doesn't yet work?
Rakudo: Is there a place where all the features that don't yet work are listed?
7
votes
1answer
143 views
Does Perl6 support something equivalent to Perl5's __DATA__ and __END__ sections?
Does perl6/Rakudo have something equivalent to perl5's __DATA__ or __END__ sections?
6
votes
4answers
253 views
Where Can I Find Demo/Sample Code For Perl 6?
I've got myself a copy of Rakudo and I'd love to give it a test drive. After looking around the Internet I found some code snippets of cool Perl 6 stuff, but no complete scripts. Any sites that make ...
4
votes
1answer
203 views
How to execute an external command and capture its output in perl6?
How can I execute an external command and capture its output in Perl6?
Perl5-style back-ticks don't seem to work:
> my $results = `ls`;
Confused at line 1, near "my $results"
Synopsis 16 ...
3
votes
1answer
177 views
Sockets code in Rakudo Perl
I've been trying to run some sockets code in Rakudo Perl (freshly built from the repository at http://github.com/rakudo/rakudo) but the implementation of IO::Socket::INET appears to be incomplete.
...
2
votes
2answers
54 views
Rakudo test suite progression?
There used to be a graph that tracked the implementation of Perl6 against the test suite for Perl6. I was interested in watching it progress (and, regress). What happened to that graph, it used to be ...
2
votes
2answers
157 views
Why do I get 'divide by zero` errors when I try to run my script with Rakudo?
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 ...
1
vote
1answer
104 views
Does a Perl 6 module for rakudo exist to parse MIMEs?
I searched github and modules.perl6.org but did not find a module to parse emails.
If there is no perl6 module yet a parrot module would be fine too.
1
vote
2answers
75 views
perl6/rakudo: dereferencing-question
#!perl6
use v6;
my $list = 'a' .. 'f';
sub my_function( $list ) {
for ^$list.elems -> $e {
$list[$e].say;
}
}
my_function( $list );
First I tried this in perl5-style, but it ...
1
vote
2answers
68 views
How to know the version of perl6/rakudo I am running?
Trying the -v switch, I get the parrot svn revision:
$ perl6 -v
This compiler is built with the Parrot Compiler Toolkit, parrot revision 45822.
but how do I know the rakudo version, either a vx.xx ...
0
votes
1answer
87 views
How to load parrot SDL pir module in rakudo?
I don't know how to load de parrot SDL module in rakudo. I've found a example to do that with pir code.
But... there is any way to load pir SDL module into rakudo with perl code?