Skip to content

Instantly share code, notes, and snippets.

@rahulkmr
Created February 7, 2010 07:20
Show Gist options
  • Save rahulkmr/297273 to your computer and use it in GitHub Desktop.
Save rahulkmr/297273 to your computer and use it in GitHub Desktop.
$> gcc -o fib -O3 fib.c
$> time ./fib_num
165580141
real 0m1.452s
user 0m1.448s
sys 0m0.000s
$> javac FibNum.java
$> time java -server FibNum
165580141
real 0m1.818s
user 0m1.672s
sys 0m0.036s
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment