summaryrefslogtreecommitdiff
path: root/benchmark/vm1_simplereturn.yml
blob: cfe1f74489b04c58473e789c782492b7fcf2819c (plain)
1
2
3
4
5
6
7
8
9
10
11
benchmark:
  vm1_simplereturn: |
    def m
      return 1
    end
    i = 0
    while i<30_000_000 # while loop 1
      i += 1
      m
    end
loop_count: 1