mirror of
https://github.com/zhigang1992/RubyMotion.git
synced 2026-04-20 16:35:38 +08:00
9 lines
139 B
Ruby
9 lines
139 B
Ruby
def object_respond_to(x)
|
|
obj = Object.new
|
|
x.report "respond_to" do
|
|
2000000.times do
|
|
obj.respond_to?(:nil?)
|
|
end
|
|
end
|
|
end
|