Skip to content

Instantly share code, notes, and snippets.

@emilwall
Created September 16, 2013 16:09
Show Gist options
  • Save emilwall/6582790 to your computer and use it in GitHub Desktop.
Save emilwall/6582790 to your computer and use it in GitHub Desktop.
Benchmark to compare ruby while and for loop, inspired by http://rubylearning.com/blog/2013/06/19/how-do-i-benchmark-ruby-code/
require 'benchmark'
iterations = 10_000
Benchmark.bm(27) do |bm|
bm.report('for loop') do
iterations.times do
for iter in 0..1_000
end
end
end
bm.report('while loop') do
iterations.times do
iter = 0
while iter < 1_000
iter += 1
end
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment