Threads Ruby

n = 1
while n <= 3
  Thread.new { puts n }
  n += 1
end