aboutsummaryrefslogtreecommitdiffstats
path: root/benchmark/bm_vm1_block.rb
blob: 1a7f98b3ce48cac42900a9c3c61230cbc966f7c5 (plain)
1
2
3
4
5
6
7
8
9
10
def m
  yield
end

i=0
while i<30000000 # while loop 1
  i+=1
  m{
  }
end