Skip to content

Instantly share code, notes, and snippets.

@jnthn
Created May 31, 2011 23:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jnthn/1001495 to your computer and use it in GitHub Desktop.
Save jnthn/1001495 to your computer and use it in GitHub Desktop.
proto foo(Mu $a) { * }
multi foo(Str $a) { say("Str") }
multi foo(Int $a) { say("Int") }
foo("lol");
foo(42);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment