Files
RubyMotion/test/Benchmark/app/benchmark/time/to_i.rb
2013-11-20 23:48:24 +09:00

9 lines
112 B
Ruby

def time_to_i(x)
x.report "to_i" do
time = Time.now
100000.times do
time.to_i
end
end
end