mirror of
https://github.com/zhigang1992/RubyMotion.git
synced 2026-04-21 10:54:35 +08:00
9 lines
136 B
Ruby
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
|