mirror of
https://github.com/zhigang1992/RubyMotion.git
synced 2026-04-03 09:45:14 +08:00
10 lines
173 B
Ruby
10 lines
173 B
Ruby
def object_instance_variable_get(x)
|
|
user = User.new
|
|
x.report "instance_variable_get" do
|
|
1000000.times do
|
|
user.instance_variable_get(:@name)
|
|
end
|
|
end
|
|
|
|
end
|