summaryrefslogtreecommitdiff
path: root/benchmark/bm_vm1_simplereturn.rb
blob: c843ee3d97ff9a01260fa6cf7c5be0e6bc8dd0fd (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