Skip to content

Instantly share code, notes, and snippets.

@headius
Created August 7, 2012 02:38
Show Gist options
  • Save headius/3280890 to your computer and use it in GitHub Desktop.
Save headius/3280890 to your computer and use it in GitHub Desktop.
system ~/projects/jruby $ time java HelloWorld
Hello, world!
real 0m0.098s
user 0m0.087s
sys 0m0.022s
system ~/projects/jruby $ time java HelloWorld
Hello, world!
real 0m0.102s
user 0m0.089s
sys 0m0.023s
system ~/projects/jruby $ time java -Xbootclasspath/p:. HelloWorld
Hello, world!
real 0m0.080s
user 0m0.060s
sys 0m0.017s
system ~/projects/jruby $ time java -Xbootclasspath/p:. HelloWorld
Hello, world!
real 0m0.081s
user 0m0.061s
sys 0m0.019s
system ~/projects/jruby $ time python hello_world.py
Hello, world!
real 0m0.029s
user 0m0.020s
sys 0m0.008s
system ~/projects/jruby $ time python hello_world.py
Hello, world!
real 0m0.031s
user 0m0.021s
sys 0m0.009s
system ~/projects/jruby $ time pypy hello_world.py
Hello, world!
real 0m0.046s
user 0m0.029s
sys 0m0.016s
system ~/projects/jruby $ time pypy hello_world.py
Hello, world!
real 0m0.042s
user 0m0.028s
sys 0m0.012s
system ~/projects/jruby $ time ruby-1.9.3 hello_world.rb
Hello, world!
real 0m0.020s
user 0m0.014s
sys 0m0.005s
system ~/projects/jruby $ time ruby-1.9.3 hello_world.rb
Hello, world!
real 0m0.017s
user 0m0.012s
sys 0m0.004s
system ~/projects/jruby $ time jruby hello_world.rb
Hello, world!
real 0m0.429s
user 0m0.458s
sys 0m0.052s
system ~/projects/jruby $ time jruby hello_world.rb
Hello, world!
real 0m0.423s
user 0m0.455s
sys 0m0.052s
system ~/projects/jruby $ time ../rubinius/bin/rbx hello_world.rb
Hello, world!
real 0m0.278s
user 0m0.246s
sys 0m0.030s
system ~/projects/jruby $ time ../rubinius/bin/rbx hello_world.rb
Hello, world!
real 0m0.281s
user 0m0.249s
sys 0m0.029s
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment