mirror of
https://github.com/zhigang1992/RubyMotion.git
synced 2026-04-22 20:18:57 +08:00
9 lines
112 B
Ruby
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
|