mirror of
https://github.com/zhigang1992/RubyMotion.git
synced 2026-04-23 20:31:17 +08:00
9 lines
112 B
Ruby
9 lines
112 B
Ruby
def time_to_f(x)
|
|
x.report "to_f" do
|
|
time = Time.now
|
|
100000.times do
|
|
time.to_f
|
|
end
|
|
end
|
|
end
|