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

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