Also able to reach the crash with:
700.times{|i|
Thread.new{}
puts i
}
and even with:
700.times{
Thread.new{}
puts "."
}
but not with:
700.times{
Thread.new{}
}
[Note: The script crashes even when 0 < i < 10]
--
Posted via http://www.ruby-forum.com/.