summaryrefslogtreecommitdiff
path: root/benchmark/bm_vm1_swap.rb
blob: a565b6f6dc7aff7b41463cc0f5e390ab59cc7f1e (plain)
1
2
3
4
5
6
7
8
a = 1
b = 2
i=0
while i<30000000 # while loop 1
  i+=1
  a, b = b, a
end