Skip to content

Instantly share code, notes, and snippets.

@yomichi
Last active January 2, 2016 06:48
Show Gist options
  • Save yomichi/8265440 to your computer and use it in GitHub Desktop.
Save yomichi/8265440 to your computer and use it in GitHub Desktop.
initial time of several script languages
$ time julia -e ''
real 0m0.268s
user 0m0.261s
sys 0m0.066s
$ time julia-0.2 -e ''
real 0m2.395s
user 0m2.433s
sys 0m0.117s
$ time ruby -e ''
real 0m0.050s
user 0m0.034s
sys 0m0.014s
$ time python -c ''
real 0m0.028s
user 0m0.016s
sys 0m0.011s
$ time perl -e ''
real 0m0.009s
user 0m0.004s
sys 0m0.005s
$ time sh -c ''
real 0m0.005s
user 0m0.002s
sys 0m0.003s
$ time octave --eval 1
real 0m0.190s
user 0m0.157s
sys 0m0.030s
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment