Files
RubyMotion/test/Benchmark/app/benchmark/object/method.rb
2014-02-24 07:41:48 +09:00

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