Tagged Questions

Use the `perl6` tag for all questions related to the Perl 6 programming language. See http://perl6.org/ for a general introduction and pointers to documentation.

learn more… | top users | synonyms

33
votes
23answers
2k views

What features of Perl 6 are you the most excited about? [closed]

Perl 6 has really shaped up in terms of which features we can expect to see implemented in the final language, when it comes. Some of them are already available through Perl 6 modules for Perl 5 from ...
25
votes
8answers
2k views

Should I learn/play with Perl 6? [closed]

Perl 6 has been under development for over 8 years now, and (as ever) there seems to be no end in sight. However, it has had a reasonable implementation for some time, Pugs, and even has multiple ...
22
votes
5answers
603 views

Can only perl6 parse Perl6?

There's that (relatively) well known Perl axiom, "Only perl can parse Perl." I'm wondering, will that remain true for Perl6? Edit: Expanding the discussion... I thought of this question given the ...
22
votes
4answers
1k views

What's the deal with all the different Perl 6 equality operators? (==, ===, eq, eqv, ~~, =:=, …)

Perl 6 seems to have an explosion of equality operators. What is =:=? What's the difference between leg and cmp? Or eqv and ===? Does anyone have a good summary?
18
votes
3answers
744 views

How many ways are there to describe the Fibonacci sequence in Perl 6?

I've been looking at the various ways of constructing lazy lists in Perl 6 and I would like to collect all of the concise ways of describing the Fibonacci sequence. I will start this off with the ...
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 ...
16
votes
4answers
1k views

Is it worth learning Perl 6?

I have the opportunity to take a two day class on Perl 6 with the Rakudo Compiler. I don't want to start a religious war, but is it worth my time? Is there any reason to believe that Perl 6 will be ...
16
votes
4answers
2k views

How does Parrot compare to other virtual machines?

Parrot is the virtual machine originally designed for Perl 6. What technical capabilities does the Parrot VM offer that competing virtual machines such as the Java Virtual Machine (JVM)/Hotspot VM ...
13
votes
5answers
390 views

How can I get started with Perl 6?

Could someone provide a link of material where to start with Perl 6? Also could someone point to real application already developed with Perl 6?
11
votes
3answers
371 views

Is there a working CPAN/CPAN6 like project for Perl 6?

Im playing around with rakudo perl6 lately and was searching for a project similar to cpan. I found cpan6 but i think there is no Perl 6 code yet. So im looking for some alternative that does not ...
11
votes
3answers
868 views

What is the current state of Perl 6?

What is the current state of Perl 6, is it production-ready? Where do we stand right now? There are many programmers curious about the current progress of Perl 6. There are also two other topics open ...
11
votes
9answers
1k views

I know Perl 5. What are the advantages of learning Perl 6, rather than moving to Python? [closed]

Coming from a Perl 5 background, what are the advantages of moving to Perl 6 or Python? Edit: If you downvoted this because you think it's just flamebait, read the answers below. They're not raving ...
10
votes
6answers
498 views

Is it a design flaw that Perl subs aren't lexically scoped?

{ sub a { print 1; } } a; A bug,is it? a should not be available from outside. Does it work in Perl 6*? * Sorry I don't have installed it yet.
10
votes
2answers
200 views

How can I return context sensitive return values in Perl 6?

In the summary of differences between Perl 5 and Perl 6, it is noted that the wantarray function is gone: wantarray() is gone wantarray is gone. In Perl 6, context flows outwards, which ...
10
votes
3answers
365 views

What is the release date for Rakudo Star (perl6)? [closed]

If a specific release date is not available (as I suspect it is not), can you provide resources for tracking how close it is to the desired feature set that allows release. I'm not necessarily asking ...
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?
8
votes
3answers
282 views

How can I try Perl 6 without installing it?

I would like to try out Perl 6, but I am not sure that downloading and configuring it is worth the effort. What can I do?
7
votes
2answers
242 views

Is it possible to implement lisp “language” in Perl 6?

In here, interpretation of Hello $world per each quoting symbol I mean language. $world = "WΩrlδ" "(Hell)*o $world\n" # <--- plain (Hell)*o, resolve $world, escape \n '(Hell)*o ...
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
2answers
102 views

Multiplication with Perl 6 Sequence Whatever (…) operator

I have seen examples of the Perl 6 whatever (...) operator in sequences, and I have tried to find out how to do a sequence which involves multiplications. The operator does the following, if one ...
6
votes
8answers
197 views

for with multiple arrays

In Scheme you can iterate over multiple lists in with for-each: > (for-each (lambda (a b) (display (+ a b)) (newline)) '(10 20 30) '(1 2 3)) 11 22 33 > I know that in Perl you can use for to ...
6
votes
5answers
456 views

Learning Perl - Which version?

I've been thinking about learning Perl. Should I learn Perl5 or start with Perl6?
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
82 views

How does one use SQLite in Perl 6?

I want to start dabbling in Perl 6. A large percentage of my programming involves SQLite databases. It looks like work has been put into using SQLite in Perl 6, but most of the info I can find is old ...
4
votes
1answer
89 views

perl6/rakudo: Unable to parse postcircumfix:sym<( )>

Why do I get this error-message? #!perl6 use v6; my @a = 1..3; my @b = 7..10; my @c = 'a'..'d'; for zip(@a;@b;@c) -> $nth_a, $nth_b, $nth_c { ... }; # Output: # ===SORRY!=== # Unable to ...
4
votes
1answer
202 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 ...
4
votes
1answer
105 views

how to create methods from arrays or hashes in perl6

I am trying to add new methods to an object dynamicaly. Following code works just fine: use SomeClass; my $obj = SomeClass.new; my $blah = 'ping'; my $coderef = method { say 'pong'; } ...
3
votes
1answer
79 views

Perl6 operator question

I was looking at the silly/cute/brilliant "sleep sort" that seems to have originated over at 4chan. To sort an array of ints, the idea is roughly foreach elt in @array spawn ...
3
votes
1answer
91 views

perl6: do I need the @-sigil for userdefined variables?

Is there something I can't do without the '@'-sigil when working with user-defined variables? #!perl6 use v6; my $list = <a b c d e f>; my @list = <a b c d e f>; $list.list.perl.say; ...
3
votes
1answer
123 views

How to control nestedness of loops in Perl 6?

This program should've written triples of indices that have a sum less or equal to 7: for ((1..7) X (1..7)) X (1..7) { .say if [+] $_ <= 7; } I thought it would only loop over the top level of ...
3
votes
1answer
100 views

“perldoc -f” for Perl6/Rakudo

Does for Perl6/Rakudo already exist something like perl5's "perldoc -f function_name" for build-in-functions which gives me a short and quick usage instruction?
3
votes
2answers
154 views

Parsing techniques for runtime language alteration

Looking at Rakudo Perl6 I wonder if there are techniques for parsing and lexical analyses that allow to alter/extend the syntax of the language and that are efficient and not to hard to implement.
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. ...
3
votes
3answers
217 views

Writing perl6 Programs using Rakudo Star: Can't install on OS X

I'm trying to install Rakudo Star on OS X 10.6, and I've reached the always frustrating point where my build has failed and I'm not sure how to procede. Does anyone here know a way past this? (I'm ...
3
votes
3answers
309 views

Does Ruby have an addon similar to Perl 6 grammars?

Perl has been one of my go-to programming language tools for years and years. Perl 6 grammars looks like a great language feature. I'd like to know if someone has started something like this for Ruby. ...
3
votes
2answers
130 views

Does Perl 6 make any promises about the order alternations will be used?

Given an alternation like /(foo|foobar|foobaz)/ does Perl 6 make any promises about which of the three will be used first, and if it does where in the documentation does it make that promise? See the ...
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
1answer
59 views

perl6/rakudo: Does perl6 enable “autoflush” by default?

#!perl6 use v6; my $message = "\nHello!\n\nSleep\nTest\n\n"; my @a = $message.split( '' ); for @a { sleep 0.3; .print; } Does perl6 enable "autoflush" by default. With perl5 without ...
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
4answers
168 views

Difference between “52” and 52?

Guys perl is not as easy i thought its so confusing thing.I just moved to operators and I wrote some codes but I am unable to figure it out how the compiler treating them. $in = "42" ; $out = ...
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
1answer
80 views

perl6/rakudo: How could I disable autoflush?

I tried this, but it didn't work: $*OUT.autoflush( 0 );
1
vote
2answers
105 views

perl6/rakudo: How can I change the data-type of a variable?

#!perl6 use v6; my $m = 70; my $n = 30; ( $m div $n ).say; The first examples works, but the second doesn't. I suppose it's because in the second example the variable-values are strings. If my ...
1
vote
1answer
73 views

perl6/rakudo: Problem with writing on the loop-variable

#!perl6 use v6; my $longest = 3; my @list = <a b c d e f>; for @list -> $element is rw { $element = sprintf "%*.*s", $longest, $longest, $element; $element.say; } This works. But ...
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
1answer
59 views

How to get the Terminalsize with perl6/rakudo?

Is there for perl6 already something to get the Terminalsize? ( for example like the perl5 "Term::ReadKey::GetTerminalSize" );
1
vote
4answers
334 views

Python magical main() signature like Perl 6

Does python have any way to easily and quickly make CLI utilities without lots of argument parsing boilerplate? In perl6, the signature for the MAIN sub automagically parses command line arguments. ...
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
2answers
21 views

Parrot VM and Static Languages

Can you create a statically typed language in Parrot VM or does it have to be dynamically typed?
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?

1 2