summaryrefslogtreecommitdiff
path: root/benchmark/bm_vm1_const.rb
blob: 3e395d9478d2776d705d6760a2a28942acaab90a (plain)
1
2
3
4
5
6
7
8
Const = 1

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