From: Gregory Brown Date: 2005-11-04T03:28:02+09:00 Subject: Re: Continous running thread On 11/3/05, iamscottwalter@gmail.com wrote: > However, it only executed once and exits. It doesn't even wait 10 > seconds before exiting. This is driving me crazy. sleep only takes integer values, but I don't think that's your problem try this though. thread = Thread.new do loop do puts "Scott" sleep 10 end end thread.join