ruby--ruby/benchmark/bm_vm1_ivar.rb

9 lines
76 B
Ruby
Raw Normal View History

@a = 1
i = 0
while i<30000000 # while loop 1
i+= 1
j = @a
k = @a
end