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

9 lines
136 B
Ruby

def time_strftime(x)
x.report "strftime" do
time = Time.now
100000.times do
time.strftime('%m/%d/%Y')
end
end
end