Created
May 4, 2016 17:34
-
-
Save zoffixznet/7412d452a45fdf75275c3d38d82af2a8 to your computer and use it in GitHub Desktop.
This file contains 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
$ time perl6 -e 'say [+] rand xx 1e6' | |
500004.929191931 | |
real 0m6.028s | |
user 0m5.592s | |
sys 0m0.140s | |
$ time perl -MList::Util=sum -wlE 'say sum map rand, 1..1e6' | |
499644.144986907 | |
real 0m0.747s | |
user 0m0.652s | |
sys 0m0.076s |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment