5 lines
87 B
Raku
5 lines
87 B
Raku
sub infix:<M+> (\l,\r) { l <<+>> r }
|
|
|
|
msay @a M+ @a;
|
|
msay @a M+ [1,2,3];
|
|
msay @a M+ 2;
|