Operators
Operator precedence
In an expression like 1 + 2 * 3
, the 2 * 3
is evaluated first.
Metaoperators
Metaoperators can be parameterized with other operators or subroutines.
Infix operators
Operators used as infix
infix ..
multi sub infix:<..>($a, $b --> Range:D) is assoc<non>
Range operator: Constructs a Range from the arguments.
# vim: expandtab softtabstop=4 shiftwidth=4 ft=perl6