count = 0t1 = Thread.new { loop { count += 1 } }t2 = Thread.new { Thread.stop }sleep 1puts t1.alive? # trueputs t1.stop? # falseputs t2.alive? # trueputs t2.stop? # true