ruby--ruby/benchmark/bm_vm_thread_create_join.rb

7 lines
75 B
Ruby

i = 0
while i<100_000 # benchmark loop 3
i+=1
Thread.new{
}.join
end