mirror of
https://github.com/zhigang1992/RubyMotion.git
synced 2026-04-03 09:45:14 +08:00
9 lines
125 B
Ruby
9 lines
125 B
Ruby
def object_method(x)
|
|
obj = Object.new
|
|
x.report "method" do
|
|
100000.times do
|
|
obj.method(:to_s)
|
|
end
|
|
end
|
|
end
|