Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

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 ...
11
votes
3answers
432 views

How do I get started with Perl 6?

I'd like to get your opinion on How to get started with Perl 6? Shall one use Rakudo which is being build on Parrot or still better go with the Pugs implementation? If Rakudo, what is the best way to ...
8
votes
2answers
187 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
201 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
175 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 ...
2
votes
2answers
143 views

Trouble using grammar with rakudo perl6

The simplest grammar usage gives me complation error. use v6; grammar Foo { token bar { \w+ } } say 'abc' ~~ /<Foo::bar>/; Invoked like src/rakudo/perl6 simple.p6, it fails with regex ...
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
86 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?