ruby--ruby/benchmark/vm_thread_create_join.rb

7 lines
77 B
Ruby

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