Skip to content

Instantly share code, notes, and snippets.

@bantic
Created January 14, 2009 20:20
Show Gist options
  • Save bantic/47047 to your computer and use it in GitHub Desktop.
Save bantic/47047 to your computer and use it in GitHub Desktop.
>> n = 50_000
=> 50000
>> Benchmark.bm do |x|
?> x.report { n.times do; "abc".concat(35); end}
>> x.report { n.times do; "abc" + 35.to_s; end}
>> end
user system total real
0.020000 0.000000 0.020000 ( 0.023788)
0.140000 0.000000 0.140000 ( 0.132843)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment