aboutsummaryrefslogtreecommitdiffstats
path: root/benchmark/bm_vm1_const.rb
blob: 00775920458b839c971ac0d234dc444f6fd62484 (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