Guest User

Untitled

a guest
Jul 17th, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. require 'benchmark'
  2.  
  3. def sums
  4. j=0
  5. 0.upto(100000) do |i|
  6. j+=i
  7. end
  8. j
  9. end
  10.  
  11. puts sums
  12.  
  13. Benchmark.bmbm do |x|
  14. x.report("sum") do
  15. 1000.times do
  16. sums
  17. end
  18. end
  19. end
Add Comment
Please, Sign In to add comment