Search Results

2
votes

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

Python has one huge advantage: it's implemented, there's a rather stable compiler for it. Perl 6 is a rather visionary language, and not yet anywhere nearly stable enough for production. Bu …
26
votes

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

=:= tests if two containers (variables or items of arrays or hashes) are aliased, ie if one changes, does the other change as well? my $x; my @a = 1, 2, 3; # $x =:= @a[ …