0]=> perl6 sub infix:«<-» ($v is rw, $p) { $v = $p; } infix:<<-> sub postfix:<!> (Int $n) { [*] 1..$n } postfix:<!> my $x <- 5! 120