mirror of
https://github.com/zhigang1992/RubyMotion.git
synced 2026-04-18 12:13:28 +08:00
10 lines
124 B
Ruby
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
|