-
-
Save jnthn/1289672 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
use v5.10; | |
use Time::HiRes qw(time); | |
my $t = time(); | |
system('perl -E "my $i = 0; while ($i < 10000000) { $i = $i + 1 }; say $i"'); | |
say time() - $t; | |
$t = time(); | |
system('perl6 --optimize=3 -e "my int $i = 0; while $i < 10000000 { $i = $i + 1 }; say $i"'); | |
say time() - $t; |
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
10000000 | |
0.745043039321899 | |
10000000 | |
4.34311890602112 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment