Files
RubyMotion/test/Benchmark/app/benchmark/string/dup.rb
2013-11-17 14:53:26 +09:00

17 lines
307 B
Ruby

def string_dup(x)
ascii = "The quick brown fox jumps over the lazy dog."
utf8 = "飛べねぇ豚はタダの豚だ...................."
x.report "dup with ASCII" do
100000.times do
ascii.dup
end
end
x.report "dup with UTF8" do
100000.times do
utf8.dup
end
end
end