Skip to content

Instantly share code, notes, and snippets.

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 zoffixznet/7412d452a45fdf75275c3d38d82af2a8 to your computer and use it in GitHub Desktop.
Save zoffixznet/7412d452a45fdf75275c3d38d82af2a8 to your computer and use it in GitHub Desktop.
$ 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