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