19 lines
217 B
Ruby
19 lines
217 B
Ruby
|
threads = []
|
||
|
|
||
|
10.times do
|
||
|
threads << Thread.new do
|
||
|
count = 0
|
||
|
|
||
|
5_000_000.times do
|
||
|
count += 1
|
||
|
end
|
||
|
|
||
|
count # return
|
||
|
end
|
||
|
end
|
||
|
|
||
|
threads.each do |t|
|
||
|
puts "Thread finished with count=#{t.value}"
|
||
|
end
|
||
|
|
||
|
puts "done!"
|