Skip to content

Instantly share code, notes, and snippets.

@erik
Created August 20, 2010 00:48
Show Gist options
  • Save erik/539326 to your computer and use it in GitHub Desktop.
Save erik/539326 to your computer and use it in GitHub Desktop.
~/Programming/C/bijou$ time ruby -e 'puts "A String!"'
A String!
real 0m0.009s
user 0m0.004s
sys 0m0.004s
~/Programming/C/bijou$ time python -c 'print("A String!")'
A String!
real 0m0.059s
user 0m0.016s
sys 0m0.004s
~/Programming/C/bijou$ time (./bijouc sample/test.s && ./bijou b.out)
A string!
Interpret returned: NULL
real 0m0.007s
user 0m0.004s
sys 0m0.000s
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment