ruby--ruby/benchmark/bm_vm3_thread_create_join.rb

7 lines
70 B
Ruby
Raw Normal View History

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