Tagged Questions
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
618 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
750 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 ...
13
votes
5answers
401 views
How can I get started with Perl 6? [closed]
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
379 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
369 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 ...
11
votes
3answers
888 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
512 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
206 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 ...
8
votes
2answers
192 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
134 views
How can I use Perl 5 modules from Perl 6?
Is the a way to use Perl 5 modules from CPAN from Rakudo Perl 6?
For example, how can I use the venerable Perl 5 module, CGI, which hasn't been ported yet, in Perl 6.
Update:
And what this funky ...
7
votes
2answers
253 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
147 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
108 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
199 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
464 views
Learning Perl - Which version?
I've been thinking about learning Perl. Should I learn Perl5 or start with Perl6?
4
votes
1answer
62 views
What is the purpose of appending the :from<perl5> suffix to the module name in a 'use' statement in Perl 6?
What's the purpose of use statement below which I stumbled across in some Perl 6 module?
use CGI:from<perl5>;
...
...
The rest of the code is just mundane usage of the Perl 5 CGI module, as ...
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
210 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
92 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
1answer
179 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
222 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 ...
2
votes
1answer
60 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
158 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
170 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
106 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
82 views
perl6/rakudo: How could I disable autoflush?
I tried this, but it didn't work:
$*OUT.autoflush( 0 );
1
vote
2answers
109 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
76 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
76 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" );
0
votes
2answers
488 views
How does opendir work in Perl 6?
Can someone tell me, why the "opendir" doesn't work?
#!/usr/bin/env perl6
use v6;
my $file = 'Dokumente/test_file';
if ( my $fh = open $file, :r ) {
for $fh.lines -> $line {
say $line;
...