multi sub infix:<+>(MyInt $a, MyInt $b)
overloads addition for MyInt
sub postfix:<!>(Int $a) { [*] 1..$a; }
creates a factorial operator:5!
yields 120
, just as you would expectsub prefix:<$$$>($a) { "$a billion dollars" }
$$$10
yields the string 10 billion dollars