mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
7 lines
114 B
Ruby
7 lines
114 B
Ruby
|
1000.times { Thread.new { sleep } }
|
||
|
i = 0
|
||
|
while i<100_000 # benchmark loop 3
|
||
|
i += 1
|
||
|
IO.pipe.each(&:close)
|
||
|
end
|