public
Fork of jschementi/ironruby-stats
Description: Statistics for IronRuby
Homepage: http://ironruby.info
Clone URL: git://github.com/jredville/ironruby-stats.git
ironruby-stats / loop.rb
100644 8 lines (5 sloc) 0.101 kb
1
2
3
4
5
6
7
8
require 'benchmark'
 
result = Benchmark.measure do
  100000.times{|i| i + 1}
end
 
print result.real