ruby--ruby/benchmark/bm_vm1_blockparam.rb

10 lines
74 B
Ruby
Executable File

def m &b
end
i = 0
while i<30_000_000 # while loop 1
i += 1
m{}
end