Files
RubyMotion/test/Benchmark/app/benchmark/object/send.rb
2014-01-27 12:48:50 +09:00

9 lines
120 B
Ruby

def object_send(x)
obj = Object.new
x.report "send" do
2000000.times do
obj.send(:nil?)
end
end
end