Files
RubyMotion/test/Benchmark/app/benchmark/string/to_sym.rb
2014-01-27 09:56:13 +09:00

10 lines
124 B
Ruby

def string_to_sym(x)
string = "x" * 30
x.report "to_sym" do
1000000.times do
string.to_sym
end
end
end