ruby--ruby/benchmark/bm_vm1_ivar_set.rb

7 lines
70 B
Ruby
Raw Normal View History

i = 0
while i<30_000_000 # while loop 1
i+= 1
@a = 1
@b = 2
end