mirror of
https://github.com/zhigang1992/RubyMotion.git
synced 2026-04-23 04:20:24 +08:00
17 lines
307 B
Ruby
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
|