Skip to content

Instantly share code, notes, and snippets.

/kwargs.pl Secret

Created February 19, 2016 17:47
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 anonymous/b3cfa48fdbba487aa3a2 to your computer and use it in GitHub Desktop.
Save anonymous/b3cfa48fdbba487aa3a2 to your computer and use it in GitHub Desktop.
perl6 rakudo moar
time perl6 -e '
sub foo(*@args, *%kwargs) {
%kwargs
}
for 1..100000 { foo(1,2,3,a=> 1, b => 2) }
'
real 0m0.955s
user 0m0.918s
sys 0m0.039s
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment