Created
January 28, 2013 22:19
-
-
Save jnthn/4659741 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
> 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