From: iamscottwalter@... Date: 2005-11-04T03:02:37+09:00 Subject: Continous running thread Hi, I have a simple task, I want to have a Thread that will every 2 minutes perfom a task. I have tried: thread = Thread.new do while true puts "Scott" sleep 10000 end end But it seems to only print "scott" once. How can I in Ruby have a thread that will puts "scott" ervery 10 seconds? Thanks in advance.