Perl 5 to Perl 6 guide - in a nutshell
How do I do what I used to do? (Perl 6 in a nutshell)
This page attempts to provide a fast-path to the changes in syntax and semantics from Perl 5 to Perl 6. Whatever worked in Perl 5 and must be written differently in Perl 6, should be listed here (whereas many new Perl 6 features and idioms need not).
Hence this should not be mistaken for a beginner tutorial or a promotional overview of Perl 6; it is intended as a technical reference for Perl 6 learners with a strong Perl 5 background and for anyone porting Perl 5 code to Perl 6 (though note that Automated translation might be more convenient).
A note on semantics; when we say "now" in this document, we mostly just mean "now that you are trying out Perl 6." We don't mean to imply that Perl 5 is now suddenly obsolete. Quite the contrary, most of us love Perl 5, and we expect Perl 5 to continue in use for a good many years. Indeed, one of our more important goals has been to make interaction between Perl 5 and Perl 6 run smoothly. However, we do also like the design decisions in Perl 6, which are certainly newer and arguably better integrated than many of the historical design decisions in Perl 5. So many of us do hope that over the next decade or two, Perl 6 will become the more dominant language. If you want to take "now" in that future sense, that's okay too. But we're not at all interested in the either/or thinking that leads to fights.
CPAN
See https://modules.perl6.org/.
If the module that you were using has not been converted to Perl 6, and no alternative is listed in this document, then its use under Perl 6 may not have been addressed yet.
The Inline::Perl5 project makes it possible to use
Perl 5 modules directly from Perl 6 code by using an embedded instance of the perl
interpreter to run Perl 5 code.
This is as simple as:
# the :from<Perl5> makes Perl 6 load Inline::Perl5 first (if installed)# and then load the Scalar::Util module from Perl 5use Scalar::Util:from<Perl5> <looks_like_number>;say looks_like_number "foo"; # 0say looks_like_number "42"; # 1
A number of Perl 5 modules have been ported to Perl 6, trying to maintain the API of these modules as much as possible, as part of the CPAN Butterfly Plan. These can be found at https://modules.perl6.org/t/CPAN5.
Many Perl 5 built-in functions (about a 100 so far) have been ported to Perl 6 with the same semantics. Think about the shift
function in Perl 5 having magic shifting from @_
or @ARGV
by default, depending on context. These can be found at https://modules.perl6.org/t/Perl5 as separately loadable modules, and in the P5built-ins bundle to get them all at once.
Syntax
There are a few differences in syntax between the two languages, starting with how identifiers are defined.
Identifiers
Perl 6 allows the use of dashes (-
), underscores (_
), apostrophes ('
), and alphanumerics in identifiers, :
sub test-doesn't-hangmy = 42;my \Δ = 72; say 72 - Δ;
->
Method calls
If you've read any Perl 6 code at all, it's immediately obvious that method call syntax now uses a dot instead of an arrow:
->name # Perl 5
.name # Perl 6
The dot notation is both easier to type and more of an industry standard. But we also wanted to steal the arrow for something else. (Concatenation is now done with the ~
operator, if you were wondering.)
To call a method whose name is not known until runtime:
->(); # Perl 5
."$methodname"(); # Perl 6
If you leave out the quotes, then Perl 6 expects $methodname
to contain a Method
object, rather than the simple string name of the method. Yes, everything in Perl 6 can be considered an object.
Whitespace
Perl 5 allows a surprising amount of flexibility in the use of whitespace, even with strict mode and warnings turned on:
# unidiomatic but valid Perl 5say"Hello ".ucfirst ([$ i]->name)."!"if[]<1;
Perl 6 also endorses programmer freedom and creativity, but balanced syntactic flexibility against its design goal of having a consistent, deterministic, extensible grammar that supports single-pass parsing and helpful error messages, integrates features like custom operators cleanly, and doesn't lead programmers to accidentally misstate their intent. Also, the practice of "code golf" is slightly de-emphasized; Perl 6 is designed to be more concise in concepts than in keystrokes.
As a result, there are various places in the syntax where whitespace is optional in Perl 5, but is either mandatory or forbidden in Perl 6. Many of those restrictions are unlikely to concern much real-life Perl code (e.g., whitespace being disallowed between the sigil and name of a variable), but there are a few that will unfortunately conflict with some Perl hackers' habitual coding styles:
No space allowed before the opening parenthesis of an argument list.
substr (, 4, 1); # Perl 5 (in Perl 6 this would try to pass a single# argument of type List to substr)substr(, 4, 1); # Perl 6substr , 4, 1; # Perl 6 - alternative parentheses-less styleShould this really be a problem for you, then you might want to have a look at the
Slang::Tuxic
module in the Perl 6 ecosystem: it changes the grammar of Perl 6 in such a way that you can have a space before the opening parenthesis of an argument list.Space is required immediately after keywords
my(, ); # Perl 5, tries to call my() sub in Perl 6my (, ); # Perl 6if( < 0) # Perl 5, dies in Perl 6if ( < 0) # Perl 6if < 0 # Perl 6, more idiomaticwhile(-- > 5) # Perl 5, dies in Perl 6while (-- > 5) # Perl 6while -- > 5 # Perl 6, more idiomaticNo space allowed after a prefix operator, or before a postfix/postcircumfix operator (including array/hash subscripts).
++; # Perl 5++; # Perl 6Space required before an infix operator if it would conflict with an existing postfix/postcircumfix operator.
<1; # Perl 5 (in Perl 6 this would conflict with postcircumfix < >)< 1; # Perl 6However, whitespace is allowed before the period of a method call!
# Perl 5my =->parse_file() # some comment->findnodes("/library/book");# Perl 6my =.parse-file() # some comment.findnodes("/library/book");
However, note that you can use unspace to add whitespace in Perl 6 code in places where it is otherwise not allowed.
See also other lexical conventions in the syntax page.
Sigils
In Perl 5, arrays and hashes use changing sigils depending on how they are being accessed. In Perl 6 the sigils are invariant, no matter how the variable is being used - you can think of them as part of the variable's name.
$
Scalar
The $
sigil is now always used with "scalar" variables (e.g. $name
), and no longer for array indexing and Hash indexing. That is, you can still use $x[1]
and $x{"foo"}
, but it will act on $x, with no effect on a similarly named @x or %x. Those would now be accessed with @x[1] and %x{"foo"}.
@
Array
The @
sigil is now always used with "array" variables (e.g. @months
, @months[2]
, @months[2, 4]
), and no longer for value-slicing hashes.
%
Hash
The %
sigil is now always used with "hash" variables (e.g. %calories
, %calories<apple>
, %calories<pear plum>
), and no longer for key/value-slicing arrays.
&
Sub
The &
sigil is now used consistently (and without the help of a backslash) to refer to the function object of a named subroutine/operator without invoking it, i.e. to use the name as a "noun" instead of a "verb":
my = \; # Perl 5
my = ; # Perl 6
callback => sub # Perl 5 - can't pass built-in sub directly
callback => # Perl 6 - & gives "noun" form of any sub
Since Perl 6 does not allow adding/removing symbols in a lexical scope once it has finished compiling, there is no equivalent to Perl 5's undef &foo;
, and the closest equivalent to Perl 5's defined &foo
would be defined ::('&foo')
(which uses the "dynamic symbol lookup" syntax). However, you can declare a mutable named subroutine with my &foo;
and then change its meaning at runtime by assigning to &foo
.
In Perl 5, the ampersand sigil can additionally be used to call subroutines in special ways with subtly different behavior compared to normal sub calls. In Perl 6 those special forms are no longer available:
&foo(...)
for circumventing a function prototypeIn Perl 6 there are no prototypes, and it no longer makes a difference whether you, say, pass a literal code block or a variable holding a code object as an argument:
# Perl 5:first_index ;(, ); # (disabling the prototype that parses a# literal block as the first argument)# Perl 6:first , , :k; # the :k makes first return an indexfirst , , :k;&foo;
andgoto &foo;
for re-using the caller's argument list / replacing the caller in the call stack. Perl 6 can use eithercallsame
for re-dispatching ornextsame
andnextwith
, which have no exact equivalent in Perl 5.sub foo # Perl 5sub foo # Perl 6 - have to be explicitsub foo # Perl 5proto foo (|) ;multi foo ( Any );multi foo ( Int );foo(3); # /language/functions#index-entry-dispatch_callsame
*
Glob
In Perl 5, the *
sigil referred to the GLOB structure that Perl uses to store non-lexical variables, filehandles, subs, and formats.
You are most likely to encounter a GLOB in code written on an early Perl version that does not support lexical filehandles, when a filehandle needed to be passed into a sub.
# Perl 5 - ancient methodsub read_2open FILE, '<', or die;my (, ) = read_2(*FILE);
You should refactor your Perl 5 code to remove the need for the GLOB, before translating into Perl 6.
# Perl 5 - modern use of lexical filehandlessub read_2open my , '<', or die;my (, ) = read_2();
And here's just one possible Perl 6 translation:
# Perl 6sub read-n(, )my = open or die;my (, ) = read-n(, 2);
[] Array indexing/slicing
Index and slice operations on arrays no longer inflect the variable's sigil, and adverbs can be used to control the type of slice:
Indexing
say [2]; # Perl 5say [2]; # Perl 6 - @ instead of $Value-slicing
say join ',', [6, 8..11]; # Perl 5 and Perl 6Key/value-slicing
say join ',', [6, 8..11]; # Perl 5say join ',', [6, 8..11]:kv; # Perl 6 - @ instead of %; use :kv adverb
Also note that the subscripting square brackets are now a normal postcircumfix operator rather than a special syntactic form, and thus checking for existence of elements and unsetting elements is done with adverbs.
{} Hash indexing/slicing
Index and slice operations on hashes no longer inflect the variable's sigil, and adverbs can be used to control the type of slice. Also, single-word subscripts are no longer magically autoquoted inside the curly braces; instead, the new angle brackets version is available which always autoquotes its contents (using the same rules as the qw//
quoting construct):
Indexing
say ; # Perl 5say ; # Perl 6 - % instead of $say ; # Perl 5say <apple>; # Perl 6 - angle brackets; % instead of $say «"$key"»; # Perl 6 - double angles interpolate as a list of StrValue-slicing
say join ',', ; # Perl 5say join ',', ; # Perl 6 - % instead of @say join ',', <pear plum>; # Perl 6 (prettier version)my = 'pear plum';say join ',', «»; # Perl 6 the split is done after interpolationKey/value-slicing
say join ',', ; # Perl 5say join ',', :kv; # Perl 6 - use :kv adverbsay join ',', <pear plum>:kv; # Perl 6 (prettier version)
Also note that the subscripting curly braces are now a normal postcircumfix operator rather than a special syntactic form, and thus checking for existence of keys and removing keys is done with adverbs.
Creating references and using them
In Perl 5, references to anonymous arrays and hashes and subs are returned during their creation. References to existing named variables and subs were generated with the \
operator. the "referencing/dereferencing" metaphor does not map cleanly to the actual Perl 6 container system, so we will have to focus on the intent of the reference operators instead of the actual syntax.
my = \ ; # Perl 5
This might be used for passing a reference to a routine, for instance. But in Perl 6, the (single) underlying object is passed (which you could consider to be a sort of pass by reference).
my = 4,8,15;(); # run the block with @array aliased to $_say ; # OUTPUT: «[66 8 15]»
The underlying Array object of @array
is passed, and its first value modified inside the declared routine.
In Perl 5, the syntax for dereferencing an entire reference is the type-sigil and curly braces, with the reference inside the curly braces. In Perl 6, this concept simply does not apply, since the reference metaphor does not really apply.
In Perl 5, the arrow operator, ->
, is used for single access to a composite's reference or to call a sub through its reference. In Perl 6, the dot operator .
is always used for object methods, but the rest does not really apply.
# Perl 5say ->[7];say ->;say ->(, );
In relatively recent versions of Perl 5 (5.20 and later), a new feature allows the use of the arrow operator for dereferencing: see Postfix Dereferencing. This can be used to create an array from a scalar. This operation is usually called decont, as in decontainerization, and in Perl 6 methods such as .list
and .hash
are used:
# Perl 5.20use experimental qw< postderef >;my = ->@*;my = ->%*;my = ->@[3..7];
# Perl 6my = .list; # or @($arrayref)my = .hash; # or %($hashref)
The "Zen" slice does the same thing:
# Perl 6my = [];my = ;
See the "Containers" section of the documentation for more information.
Operators
See the documentation for operators for full details on all operators.
Unchanged:
+
Numeric Addition-
Numeric Subtraction*
Numeric Multiplication/
Numeric Division%
Numeric Modulus**
Numeric Exponentiation++
Numeric Increment--
Numeric Decrement! && || ^
Booleans, high-precedencenot and or xor
Booleans, low-precedence== != < > <= >=
Numeric comparisonseq ne lt gt le ge
String comparisons
,
(Comma) List separator
Unchanged, but note that in order to flatten an array variable to a list (in order to append or prefix more items) one should use the |
operator (see also Slip). For instance:
my = 100, 200, 300;my = 500, 600, 700;my = |, 400, |;
That way one can concatenate arrays.
Note that one does not need to have any parentheses on the right-hand side: the List Separator takes care of creating the list, not the parentheses!
<=> cmp
Three-way comparisons
In Perl 5, these operators returned -1, 0, or 1. In Perl 6, they return Order::Less
, Order::Same
, or Order::More
.
cmp
is now named leg
; it forces string context for the comparison.
<=>
still forces numeric context.
cmp
in Perl 6 does either <=>
or leg
, depending on the existing type of its arguments.
~~
Smartmatch operator
While the operator has not changed, the rules for what exactly is matched depend on the types of both arguments, and those rules are far from identical in Perl 5 and Perl 6. See ~~ and the smartmatch operator
& | ^
String bitwise ops
& | ^
Numeric bitwise ops
& | ^
Boolean ops
In Perl 5, & | ^
were invoked according to the contents of their arguments. For example, 31 | 33
returns a different result than "31" | "33"
.
In Perl 6, those single-character ops have been removed, and replaced by two-character ops which coerce their arguments to the needed context.
# Infix ops (two arguments; one on each side of the op)+& +| +^ And Or Xor: Numeric~& ~| ~^ And Or Xor: String?& ?| ?^ And Or Xor: Boolean# Prefix ops (one argument, after the op)+^ Not: Numeric~^ Not: String?^ Not: Boolean (same as the ! op)
<< >>
Numeric shift left|right ops
Replaced by +<
and +>
.
say 42 << 3; # Perl 5
say 42 +< 3; # Perl 6
=>
Fat comma
In Perl 5, =>
acted just like a comma, but also quoted its left-hand side.
In Perl 6, =>
is the Pair operator, which is quite different in principle, but works the same in many situations.
If you were using =>
in hash initialization, or in passing arguments to a sub that expects a hashref, then the usage is likely identical.
sub get_the_loot ; # Perl 6 stub# Works in Perl 5 and Perl 6my = ( AAA => 1, BBB => 2 );get_the_loot( 'diamonds', ); # Note the curly braces
If you were using =>
as a convenient shortcut to not have to quote part of a list, or in passing arguments to a sub that expects a flat list of KEY, VALUE, KEY, VALUE
, then continuing to use =>
may break your code. The easiest workaround is to change that fat arrow to a regular comma, and manually add quotes to its left-hand side. Or, you can change the sub's API to slurp a hash. A better long-term solution is to change the sub's API to expect Pairs; however, this requires you to change all sub calls at once.
# Perl 5sub get_the_loot# Note: no curly braces in this sub callget_the_loot( 'diamonds', quiet_level => 'very', quantity => 9 );
# Perl 6, original APIsub get_the_loot( , * )get_the_loot( 'diamonds', quiet_level => 'very', quantity => 9 ); # Note: no curly braces in this API# Perl 6, API changed to specify valid options# The colon before the sigils means to expect a named variable,# with the key having the same name as the variable.sub get_the_loot( , :?, : = 1 )get_the_loot( 'diamonds', quietlevel => 'very' ); # Throws error for misspelled parameter name
? :
Ternary operator
The conditional operator ? :
has been replaced by ?? !!
:
my = > 60 ? 'Pass' : 'Fail'; # Perl 5
my = > 60 ?? 'Pass' !! 'Fail'; # Perl 6
.
(Dot) String concatenation
Replaced by the tilde.
Mnemonic: think of "stitching" together the two strings with needle and thread.
= 'grape' . 'fruit'; # Perl 5
= 'grape' ~ 'fruit'; # Perl 6
x
List repetition or string repetition operator
In Perl 5, x
is the Repetition operator, which behaves differently in scalar or list contexts:
in scalar context
x
repeats a string;in list context
x
repeats a list, but only if the left argument is parenthesized!
Perl 6 uses two different Repetition operators to achieve the above:
x
for string repetitions (in any context);xx
for list repetitions (in any context).
Mnemonic: x
is short and xx
is long, so xx
is the one used for lists.
# Perl 5print '-' x 80; # Print row of dashes= (1) x 80; # A list of 80 1's= (5) x ; # Set all elements to 5
# Perl 6print '-' x 80; # Unchanged= 1 xx 80; # Parentheses no longer needed= 5 xx ; # Parentheses no longer needed
..
...
Two dots or three dots, range op or flipflop op
In Perl 5, ..
was one of two completely different operators, depending on context.
In list context, ..
is the familiar range operator. Ranges from Perl 5 code should not require translation.
In scalar context, ..
and ...
were the little-known Flipflop operators. They have been replaced by ff
and fff
.
String interpolation
In Perl 5, "${foo}s"
deliminates a variable name from regular text next to it. In Perl 6, simply extend the curly braces to include the sigil too: "{$foo}s"
. This is in fact a very simple case of interpolating an expression.
Compound statements
These statements include conditionals and loops.
Conditionals
if
elsif
else
unless
Mostly unchanged; parentheses around the conditions are now optional, but if used, must not immediately follow the keyword, or it will be taken as a function call instead. Binding the conditional expression to a variable is also a little different:
if (my = dostuff()) # Perl 5
if dostuff() -> # Perl 6
(You can still use the my
form in Perl 6, but it will scope to the outer block, not the inner.)
The unless
conditional only allows for a single block in Perl 6; it does not allow for an elsif
or else
clause.
given
-when
The given
-when
construct is like a chain of if
-elsif
-else
statements or like the switch
-case
construct in e.g. C. It has the general structure:
given EXPR
In its simplest form, the construct is as follows:
given
This is simple in the sense that a scalar value is matched in the when
statements against $_
, which was set by the given
. More generally, the matches are actually smartmatches on $_
such that lookups using more complex entities such as regexps can be used instead of scalar values.
See also the warnings on the smartmatch op above.
Loops
while
until
Mostly unchanged; parentheses around the conditions are now optional, but if used, must not immediately follow the keyword, or it will be taken as a function call instead. Binding the conditional expression to a variable is also a little different:
while (my = dostuff()) # Perl 5
while dostuff() -> # Perl 6
(You can still use the my
form in Perl 6, but it will scope to the outer block, not the inner.)
Note that reading line-by-line from a filehandle has changed.
In Perl 5, it was done in a while
loop using the diamond operator. Using for
instead of while
was a common bug, because the for
causes the whole file to be sucked in at once, swamping the program's memory usage.
In Perl 6, for
statement is lazy, so we read line-by-line in a for
loop using the .lines
method.
while (<IN_FH>) # Perl 5
for .lines # Perl 6
Also note that in Perl 6, lines are chomp
ed by default.
do
while
/until
# Perl 5dowhile < 10;dountil >= 10;
The construct is still present, but do
was renamed to repeat
, to better represent what the construct does:
# Perl 6repeatwhile < 10;repeatuntil >= 10;
for
foreach
Note first this common misunderstanding about the for
and foreach
keywords: Many programmers think that they distinguish between the C-style three-expression form and the list-iterator form; they do not! In fact, the keywords are interchangeable; the Perl 5 compiler looks for the semicolons within the parentheses to determine which type of loop to parse.
The C-style three-factor form now uses the loop
keyword, and is otherwise unchanged. The parentheses are still required.
for ( my = 1; <= 10; ++ ) # Perl 5
loop ( my = 1; <= 10; ++ ) # Perl 6
The loop-iterator form is named for
in Perl 6 and foreach
is no longer a keyword. The for
loop has the following rules:
parentheses are optional;
the iteration variable, if any, has been moved from appearing before the list, to appearing after the list and an added arrow operator;
the iteration variable is now always lexical:
my
is neither needed nor allowed;the iteration variable is a read-only alias to the current list element (in Perl 5 it is a read-write alias!). If a read-write alias is required, change the
->
before the iteration variable to a<->
. When translating from Perl 5, inspect the use of the loop variable to decide if read-write is needed.
for my () # Perl 5; read-write
for -> # Perl 6; read-onlyfor <-> # Perl 6; read-write
If the default topic $_
is being used, it is also read-write.
for () # Perl 5; $_ is read-write
for # Perl 6; $_ is read-writefor <-> # Perl 6; $_ is also read-write
It is possible to consume more than one element of the list in each iteration simply specifying more than one variable after the arrow operator:
my = 1..10;for -> ,
each
Here is the equivalent to Perl 5’s while…each(%hash)
or while…each(@array)
(i.e., iterating over both the keys/indices and values of a data structure) in Perl 6:
while (my (, ) = each()) # Perl 5
for .kv -> , # Perl 6
while (my (, ) = each()) # Perl 5
for .kv -> , # Perl 6
Flow control statements
Unchanged:
next
last
redo
continue
There is no longer a continue
block. Instead, use a NEXT
block (phaser) within the body of the loop.
# Perl 5my = '';for (1..5)continue
# Perl 6my = '';for 1..5
Please note that phasers don't really need a block. This can be very handy when you don't want another scope:
# Perl 6my = '';for 1..5
Functions
Built-ins with bare blocks
Builtins that previously accepted a bare block followed, without a comma, by the remainder of the arguments will now require a comma between the block and the arguments e.g. map
, grep
, etc.
my = grep ; # Perl 5
my = grep , ; # Perl 6
delete
Turned into an adverb of the {}
hash subscripting and []
array subscripting operators.
my = delete ; # Perl 5
my = :delete; # Perl 6 - use :delete adverb
my = delete []; # Perl 5
my = []:delete; # Perl 6 - use :delete adverb
exists
Turned into an adverb of the {}
hash subscripting and []
array subscripting operators.
say "element exists" if exists ; # Perl 5
say "element exists" if :exists; # Perl 6 - use :exists adverb
say "element exists" if exists []; # Perl 5
say "element exists" if []:exists; # Perl 6 - use :exists adverb
Regular expressions ( regex / regexp )
Change =~
and !~
to ~~
and !~~
.
In Perl 5, matches and substitutions are done against a variable using the =~
regexp-binding op.
In Perl 6, the ~~
smartmatch op is used instead.
next if =~ /static/ ; # Perl 5
next if ~~ /static/ ; # Perl 6
next if !~ /dynamic/ ; # Perl 5
next if !~~ /dynamic/ ; # Perl 6
=~ s/abc/123/; # Perl 5
~~ s/abc/123/; # Perl 6
Alternately, the new .match
and .subst
methods can be used. Note that .subst
is non-mutating.
Captures start with 0, not 1
/(.+)/ and print $1; # Perl 5
/(.+)/ and print $0; # Perl 6
Move modifiers
Move any modifiers from the end of the regex to the beginning. This may require you to add the optional m
on a plain match like /abc/
.
next if =~ /static/i ; # Perl 5
next if ~~ m:i/static/ ; # Perl 6
Add :P5 or :Perl5 adverb
If the actual regex is complex, you may want to use it as-is, by adding the P5
modifier.
next if =~ m/[aeiou]/ ; # Perl 5
next if ~~ m:P5/[aeiou]/ ; # Perl 6, using P5 modifiernext if ~~ m/ / ; # Perl 6, native new syntax
Please note that the Perl 5 regular expression syntax dates from many years ago and may lack features that have been added since the beginning of the Perl 6 project.
Special matchers generally fall under the <> syntax
There are many cases of special matching syntax that Perl 5 regexes support. They won't all be listed here, but often instead of being surrounded by ()
, the assertions will be surrounded by <>
.
For character classes, this means that:
[abc]
becomes<[abc]>
[^abc]
becomes<-[abc]>
[a-zA-Z]
becomes<[a..zA..Z]>
[[:upper:]]
becomes<:Upper>
[abc[:upper:]]
becomes<[abc]+:Upper>
For lookaround assertions:
(?=[abc])
becomes<?[abc]>
(?=ar?bitrary* pattern)
becomes<before ar?bitrary* pattern>
(?!=[abc])
becomes<![abc]>
(?!=ar?bitrary* pattern)
becomes<!before ar?bitrary* pattern>
(?<=ar?bitrary* pattern)
becomes<after ar?bitrary* pattern>
(?<!ar?bitrary* pattern)
becomes<!after ar?bitrary* pattern>
For more info see lookahead assertions.
(Unrelated to <> syntax, the "lookaround" /foo\Kbar/
becomes /foo <( bar )> /
(?(?{condition))yes-pattern|no-pattern)
becomes[ <?{condition}> yes-pattern | no-pattern ]
Longest token matching (LTM) displaces alternation
In Perl 6 regexes, |
does LTM, which decides which alternation wins an ambiguous match based off of a set of rules, rather than about which was written first.
The simplest way to deal with this is just to change any |
in your Perl 5 regex to a ||
.
However, if a regex written with ||
is inherited or composed into a grammar that uses |
either by design or typo, the result may not work as expected. So when the matching process becomes complex, you finally need to have some understanding of both, especially how LTM strategy works. Besides, |
may be a better choice for grammar reuse.
Named captures
These work in a slightly different way; also they only work in the latest versions of Perl 5.
use v5.22;"þor is mighty" =~ /is (?<iswhat>\w+)/n;say $+;
The iswhat
within a non-capturing group is used to actually capture what is behind, and up to the end of the group (the )
). The capture goes to the %+
hash under the key with the name of the capture. In Perl 6 named captures work this way
"þor is mighty" ~~ /is \s+ =(\w+)/;say ;
An actual assignment is made within the regular expression; that's the same syntax used for the variable outside it.
Comments
As with Perl 5, comments work as usual in regexes.
/ word #`(match lexical "word") /
BEGIN, UNITCHECK, CHECK, INIT and END
Except for UNITCHECK
, all of these special blocks exist in Perl 6 as well. In Perl 6, these are called Phasers. But there are some differences!
UNITCHECK becomes CHECK
There is currently no direct equivalent of CHECK
blocks in Perl 6. The CHECK
phaser in Perl 6 has the same semantics as the UNITCHECK
block in Perl 5: it gets run whenever the compilation unit in which it occurs has finished parsing. This is considered a much saner semantic than the current semantics of CHECK
blocks in Perl 5. But for compatibility reasons, it was impossible to change the semantics of CHECK
blocks in Perl 5, so a UNITCHECK
block was introduced in 5.10. Consequently, it was decided that the Perl 6 CHECK
phaser would follow the saner Perl 5 UNITCHECK
semantics.
No block necessary
In Perl 5, these special blocks must have curly braces, which implies a separate scope. In Perl 6 this is not necessary, allowing these special blocks to share their scope with the surrounding lexical scope.
my ; # Perl 5BEGIN
BEGIN my = 42; # Perl 6
Changed semantics with regards to precompilation
If you put BEGIN
and CHECK
phasers in a module that is being precompiled, then these phasers will only be executed during precompilation and not when a precompiled module is being loaded. So when porting module code from Perl 5, you may need to change BEGIN
and CHECK
blocks to INIT
blocks to ensure that they're run when loading that module.
Pragmas
strict
Strict mode is now on by default.
warnings
Warnings are now on by default.
no warnings
is currently NYI, but putting things in a quietly
{} block will silence.
autodie
The functions which were altered by autodie
to throw exceptions on error, now generally return Failure
s by default. You can test a Failure
for definedness / truthiness without any problem. If you use the Failure
in any other way, then the Exception
that was encapsulated by the Failure
will be thrown.
# Perl 5open my , '<', ; # Fails silently on erroruse autodie;open my , '>', ; # Throws exception on error
# Perl 6my = open , :r; # Returns Failure on errormy = open , :w; # Returns Failure on error
Because you can check for truthiness without any problem, you can use the result of an open
in an if
statement:
# Perl 6if open(,:r) ->else
base
, parent
Both use base
and use parent
have been replaced in Perl 6 by the is
keyword, in the class declaration.
# Perl 5;use base qw(Animal);
# Perl 6is Animal
Note that the Animal
class must be known at compilation time prior to be able to inherit from it.
bigint
bignum
bigrat
No longer relevant.
Int
is now arbitrary precision, as is the numerator of Rat
(the denominator is limited to 2**64
, after which it will automatically upgrade to Num
to preserve performance). If you want a Rat
with an arbitrary-precision denominator, FatRat
is available.
constant
In Perl 6, constant
is a declarator for variables, just like my
, except the variable is permanently locked to the result of its initialization expression (evaluated at compile time).
So, change the =>
to =
.
use constant DEBUG => 0; # Perl 5
constant DEBUG = 0; # Perl 6
use constant pi => 4 * atan2(1, 1); # Perl 5
tau, pi, e, i; # built-in constants in Perl 6τ, π, 𝑒 # and their unicode equivalents
encoding
Allows you to write your script in non-ascii or non-utf8. Perl 6 uses, for the time being, only utf8 for its scripts.
integer
Perl pragma to use integer arithmetic instead of floating point. There is no such thing in Perl 6. If you use native integers in your calculations, then this will be the closest thing.
#Perl 6my int = 42;my int = 666;say * ; # uses native integer multiplication
lib
Manipulate where modules are looked up at compile time. The underlying logic is very different from Perl 5, but in the case you are using an equivalent syntax, use lib
in Perl 6 works the same as in Perl 5.
mro
No longer relevant.
In Perl 6, method calls now always use the C3 method resolution order. If you need to find out parent classes of a given class, you can invoke the mro
metamethod thusly:
say Animal.^mro; # .^ indicates calling a metamethod on the object
utf8
No longer relevant: in Perl 6, source code is expected to be in utf8 encoding.
vars
Discouraged in Perl 5. See https://perldoc.perl.org/vars.html.
You should refactor your Perl 5 code to remove the need for use vars
, before translating into Perl 6.
Command-line flags
See the command line flags that Rakudo uses
Unchanged:
-c -e -h -I -n -p -v -V
-a
Change your code to use .split
manually.
-F
Change your code to use .split
manually.
-l
This is now the default behavior.
-M
-m
Only -M
remains. And, as you can no longer use the "no Module" syntax, the use of -
with -M
to "no" a module is no longer available.
-E
Since all features are already enabled, just use lowercase -e
.
-d
, -dt
, -d:foo
, -D
, etc.
Replaced with the ++BUG
metasyntactic option.
-s
Switch parsing is now done by the parameter list of the MAIN
subroutine.
# Perl 5#!/usr/bin/perl -sif ()./example.pl -xyz=55
# Perl 6sub MAIN( Int : )
perl6 example.p6 --xyz=55perl6 example.p6 -xyz=55
-t
Removed.
-P
-u
-U
-W
-X
Removed. See Removed Syntactic Features.
-w
This is now the default behavior.
-S
,-T
.
This has been eliminated. Several ways to replicate "taint" mode are discussed in Reddit.
File-related operations
Reading the lines of a text file into an array
In Perl 5, a common idiom for reading the lines of a text file goes something like this:
open my , "<", "file" or die "$!";my = <$fh>; # lines are NOT chompedclose ;
In Perl 6, this has been simplified to
my = "file".IO.lines; # auto-chomped
Do not be tempted to try slurping in a file and splitting the resulting string on newlines as this will give an array with a trailing empty element, which is one more than you probably expect (it's also more complicated), e.g.:
# initialize the file to readspurt "test-file",# read the filemy = "test-file".IO.slurp.split(/\n/);say .elems; #-> 4
If for some reason you do want to slurp the file first, then you can call the lines
method on the result of slurp
instead:
my = "test-file".IO.slurp.lines; # also auto-chomps
Also, be aware that $!
is not really relevant for file IO operation failures in Perl 6. An IO operation that fails will return a Failure
instead of throwing an exception. If you want to return the failure message, it is in the failure itself, not in $!
. To do similar IO error checking and reporting as in Perl 5:
my = open('./bad/path/to/file', :w) or die ;
Note: $fh
instead of $!
. Or, you can set $_
to the failure and die with $_:
my = open('./bad/path/to/file', :w) orelse .die; # Perl 6
Any operation that tries to use the failure will cause the program to fault and terminate. Even just a call to the .self
method is sufficient.
my = open('./bad/path/to/file', :w).self;
Capturing the standard output of executables.
Whereas in Perl 5 you would do:
my = 'Hello';my = `echo \Q$arg\E`;my = qx(echo \Q$arg\E);
Or using String::ShellQuote
(because \Q…\E
is not completely right):
my = shell_quote 'Hello';my = `echo `;my = qx(echo );
In Perl 6, you will probably want to run commands without using the shell:
my = 'Hello';my = run('echo', , :out).out.slurp;my = run(«echo "$arg"», :out).out.slurp;
You can also use the shell if you really want to:
my = 'Hello';my = shell("echo $arg", :out).out.slurp;my = ;
But beware that in this case there is no protection at all! run
does not use the shell, so there is no need to escape the arguments (arguments are passed directly). If you are using shell
or qqx
, then everything ends up being one long string which is then passed to the shell. Unless you validate your arguments very carefully, there is a high chance of introducing shell injection vulnerabilities with such code.
Environment variables
Perl module library path
In Perl 5 one of the environment variables to specify extra search paths for Perl modules is PERL5LIB
.
$ PERL5LIB="/some/module/lib" perl program.pl
In Perl 6 this is similar, one merely needs to change a number! As you probably guessed, you just need to use PERL6LIB
:
$ PERL6LIB="/some/module/lib" perl6 program.p6
In Perl 5 one uses the ':' (colon) as a directory separator for PERL5LIB
, but in Perl 6 one uses the ',' (comma). For example:
$ export PERL5LIB=/module/dir1:/module/dir2;
but
$ export PERL6LIB=/module/dir1,/module/dir2;
(Perl 6 does not recognize either the PERL5LIB
or the older Perl environment variable PERLLIB
.)
As with Perl 5, if you don't specify PERL6LIB
, you need to specify the library path within the program via the use lib
pragma:
use lib '/some/module/lib'
Note that PERL6LIB
is more of a developer convenience in Perl 6 (as opposed to the equivalent usage of PERL5LIB
in Perl5) and shouldn't be used by module consumers as it could be removed in the future. This is because Perl 6's module loading isn't directly compatible with operating system paths.
Misc.
'0'
is True
Unlike Perl 5, a string containing nothing but zero ('0') is True
. As Perl 6 has types in core, that makes more sense. This also means the common pattern:
... if defined and length ; # or just length() in modern perls
In Perl 6 becomes a simple
... if ;
dump
Gone.
The Perl 6 design allows for automatic and transparent saving-and-loading of compiled bytecode.
Rakudo supports this only for modules so far.
AUTOLOAD
The FALLBACK
method provides similar functionality.
Importing specific functions from a module
In Perl 5 it is possible to selectively import functions from a given module like so:
use ModuleName qw{foo bar baz};
In Perl 6 one specifies the functions which are to be exported by using the is export
role on the relevant subs; all subs with this role are then exported. Hence, the following module Bar
exports the subs foo
and bar
but not baz
:
unit ;sub foo() is exportsub bar() is exportsub baz()
To use this module, simply use Bar
and the functions foo
and bar
will be available
use Bar;foo(1); #=> "foo 1"bar(2); #=> "bar 2"
If one tries to use baz
an "Undeclared routine" error is raised at compile time.
So, how does one recreate the Perl 5 behavior of being able to selectively import functions? By defining an EXPORT
sub inside the module which specifies the functions to be exported and removing the module Bar
statement.
The former module Bar
now is merely a file called Bar.pm6
with the following contents:
sub EXPORT(*)sub foo(, , )sub bar()sub baz()
Note that the subs are no longer explicitly exported via the is export
role, but by an EXPORT
sub which specifies the subs in the module we want to make available for export and then we are populating a hash containing the subs which will actually be exported. The @import-list
is set by the use
statement in the calling code thus allowing us to selectively import the subs made available by the module.
So, to import only the foo
routine, we do the following in the calling code:
use Bar <foo>;foo(1); #=> "foo 1"
Here we see that even though bar
is exportable, if we don't explicitly import it, it's not available for use. Hence this causes an "Undeclared routine" error at compile time:
use Bar <foo>;foo(1);bar(5); #!> "Undeclared routine: bar used at line 3"
However, this will work
use Bar <foo bar>;foo(1); #=> "foo 1"bar(5); #=> "bar 5"
Note also that baz
remains unimportable even if specified in the use
statement:
use Bar <foo bar baz>;baz(3); #!> "Undeclared routine: baz used at line 2"
In order to get this to work, one obviously has to jump through many hoops. In the standard use-case where one specifies the functions to be exported via the is export
role, Perl 6 automatically creates the EXPORT
sub in the correct manner for you, so one should consider very carefully whether or not writing one's own EXPORT
routine is worthwhile.
Importing groups of specific functions from a module
If you would like to export groups of functions from a module, you just need to assign names to the groups, and the rest will work automagically. When you specify is export
in a sub declaration, you are in fact adding this subroutine to the :DEFAULT
export group. But you can add a subroutine to another group, or to multiple groups:
unit ;sub foo() is export # added by default to :DEFAULTsub bar() is export(:FNORBL) # added to the FNORBL export groupsub baz() is export(:DEFAULT:FNORBL) # added to both
So now you can use the Bar
module like this:
use Bar; # imports foo / bazuse Bar :FNORBL; # imports bar / bazuse Bar :ALL; # imports foo / bar / baz
Note that :ALL
is an auto-generated group that encompasses all subroutines that have an is export
trait.
Core modules
Data::Dumper
In Perl 5, the Data::Dumper module was used for serialization, and for debugging views of program data structures by the programmer.
In Perl 6, these tasks are accomplished with the .perl
method, which every object has.
# Given:my = (,,);# Perl 5use Data::Dumper;::Dumper::Useqq = 1;print Dumper \; # Note the backslash.
# Perl 6say .perl; # .perl on the array, not on its reference.
In Perl 5, Data::Dumper has a more complex optional calling convention, which allows for naming the VARs.
In Perl 6, placing a colon in front of the variable's sigil turns it into a Pair, with a key of the var name, and a value of the var value.
# Given:my ( , ) = ( 42, 44 );my = ( 16, 32, 64, 'Hike!' );# Perl 5use Data::Dumper;print Data::Dumper->Dump([ , , \ ],[ qw( foo bar *baz ) ],);# Output# $foo = 42;# $bar = 44;# @baz = (# 16,# 32,# 64,# 'Hike!'# );
# Perl 6say [ :, :, : ].perl;# OUTPUT: «["foo" => 42, "bar" => 44, "baz" => [16, 32, 64, "Hike!"]]»
There is also a Rakudo-specific debugging aid for developers called dd
(Tiny Data Dumper, so tiny it lost the "t"). This will print the .perl
representation plus some extra information that could be introspected, of the given variables on STDERR:
# Perl 6dd , , ;# OUTPUT: «Int $foo = 42Int $bar = 44Array @baz = [16, 32, 64, "Hike!"]»
Getopt::Long
Switch parsing is now done by the parameter list of the MAIN
subroutine.
# Perl 5use 5.010;use Getopt::Long;GetOptions('length=i' => \( my = 24 ), # numeric'file=s' => \( my = 'file.dat' ), # string'verbose' => \( my ), # flag) or die;say ;say ;say 'Verbosity ', ( ? 'on' : 'off') if defined ;perl example.pl24file.datperl example.pl --file=foo --length=42 --verbose42fooVerbosity onperl example.pl --length=abcValue "abc" invalid for option length (number expected)Died at c.pl line 3.
# Perl 6sub MAIN( Int : = 24, :file() = 'file.dat', Bool : )
perl6 example.p624file.datVerbosity offperl6 example.p6 --file=foo --length=42 --verbose42fooVerbosity onperl6 example.p6 --length=abcUsage:c.p6 [--length=<Int>] [--file=<Any>] [--verbose]
Note that Perl 6 auto-generates a full usage message on error in command-line parsing.
Automated translation
A quick way to find the Perl 6 version of a Perl 5 construct, is to run it through an automated translator.
NOTE: None of these translators are yet complete.
Blue Tiger
This project is dedicated to automated modernization of Perl code. It does not (yet) have a web front-end, and so must be locally installed to be useful. It also contains a separate program to translate Perl 5 regexes into Perl 6.
https://github.com/Util/Blue_Tiger/
Perlito
Online translator!
This project is a suite of Perl cross-compilers, including Perl 5-to-6 translation. It has a web front-end, and so can be used without installation. It only supports a subset of Perl 5 syntax so far.
https://fglock.github.io/Perlito/perlito/perlito5.html
Perl-ToPerl6
Jeff Goff's Perl::ToPerl6 module for Perl 5 is designed around Perl::Critic's framework. It aims to convert Perl5 to compilable (if not necessarily running) Perl 6 code with the bare minimum of changes. Code transformers are configurable and pluggable, so you can create and contribute your own transformers, and customize existing transformers to your own needs. You can install the latest release from CPAN, or follow the project live on GitHub. An online converter may become available at some point.