Created
September 16, 2013 16:09
-
-
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/
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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