Skip to content

Instantly share code, notes, and snippets.

@jnthn
Created May 1, 2014 16:37
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/7d2421d4e3e77b7570b5 to your computer and use it in GitHub Desktop.
Save jnthn/7d2421d4e3e77b7570b5 to your computer and use it in GitHub Desktop.
C:\consulting\rakudo>timecmd perl6-m --optimize=3 -e "loop (my int $i = 1; $i <= 100000000; $i = $i + 1) { }"
command took 0:0:6.08 (6.08s tota
C:\consulting\rakudo>timecmd perl -e "use integer; for (my $i = 1; $i <= 100000000; $i = $i + 1) { }"
command took 0:0:7.09 (7.09s tota
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment