Skip to content

Instantly share code, notes, and snippets.

@miry
Created September 20, 2013 08:43
Show Gist options
  • Save miry/6634857 to your computer and use it in GitHub Desktop.
Save miry/6634857 to your computer and use it in GitHub Desktop.
require 'benchmark'
Benchmark.bm do |x|
x.report { n.times { nil.to_s } }
x.report { n.times { "#{nil}" } }
end
# user system total real
# 0.020000 0.000000 0.020000 ( 0.027392)
# 0.040000 0.000000 0.040000 ( 0.041352)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment