mirror of
https://github.com/zhigang1992/RubyMotion.git
synced 2026-04-06 09:41:13 +08:00
14 lines
232 B
Ruby
14 lines
232 B
Ruby
def string_length(x)
|
|
x.report "length with ASCII" do
|
|
1000000.times do
|
|
$short_sentence_ascii.length
|
|
end
|
|
end
|
|
|
|
x.report "length with UTF8" do
|
|
1000000.times do
|
|
$short_sentence_utf8.length
|
|
end
|
|
end
|
|
end
|