Skip to content

Instantly share code, notes, and snippets.

@FioFiyo
Last active June 23, 2016 18:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save FioFiyo/6b2a73139d4be1f99d09a6c75fd433dd to your computer and use it in GitHub Desktop.
Save FioFiyo/6b2a73139d4be1f99d09a6c75fd433dd to your computer and use it in GitHub Desktop.
Cleaner code to run the block perhaps faster?
# require 'pry'
def benchmark
start_time = Time.now
# binding.pry
yield
end_time = Time.now
end_time - start_time
end
# Be careful, pasting this into IRB will take a long time to print.
# It's a loooong string. :)
long_string = "apple"*100000000
running_time = benchmark { long_string.reverse }
puts "string.reverse took #{running_time} seconds to run"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment