Skip to content

Instantly share code, notes, and snippets.

@jnthn
Created September 22, 2011 00:06
Show Gist options
  • Save jnthn/1233689 to your computer and use it in GitHub Desktop.
Save jnthn/1233689 to your computer and use it in GitHub Desktop.
C:\consulting\rakudo>type mp.p6
multi foo(Str $a) { }
multi foo() { }
say &foo.candidates_matching('lol').elems;
say &foo.candidates_matching(42).elems;
say &foo.candidates_matching().elems;
C:\consulting\rakudo>perl6 mp.p6
1
0
1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment