ruby--ruby/benchmark/bm_vm1_swap.rb

9 lines
74 B
Ruby
Raw Normal View History

a = 1
b = 2
i=0
while i<30000000 # while loop 1
i+=1
a, b = b, a
end