summaryrefslogtreecommitdiff
path: root/benchmark/bm_vm1_simplereturn.rb
blob: bf22c5d5e43498454fcf259aef2220c88a7387d0 (plain)
1
2
3
4
5
6
7
8
9
def m
  return 1
end
i = 0
while i<30_000_000 # while loop 1
  i+=1
  m
end