The multi keyword allows defining more than one function (or subroutine, or simply sub) with the same name. The only restriction is that those functions should have different signatures. In Perl 6, the signature of the sub is defined together with its name, and the arguments may be typed. In the case of multi subs, typed arguments make even more sense because they help to distinguish between different versions of the function with a single name and make a correct choice when the compiler needs to call one of them.
multi sub twice(Int $x) { Β Β Β return $x * 2; }Β multi sub twice(Str $s) { Β Β Β return "$s, $s"; }Β say twice(42);Β Β # 84 say twice("hi"); # hi, hi
As we have two functions here, one taking an integer argument and another expecting a string, the compiler can easily decide which one it should use.