Skip to content

Instantly share code, notes, and snippets.

@jnthn
Created January 28, 2013 22:19
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/4659741 to your computer and use it in GitHub Desktop.
Save jnthn/4659741 to your computer and use it in GitHub Desktop.
> timecmd nqp nqp-jvm-cc.nqp -e "sub foo() { }; my $i := 0; while $i++ < 100000000 { foo() }; say($i)"
100000001
command took 0:0:5.36 (5.36s total)
> timecmd nqp -e "sub foo() { }; my $i := 0; while $i++ < 100000000 { foo() }; say($i)"
100000001
command took 0:1:25.11 (85.11s total)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment