Join two threads
t1 = Thread.new do puts "alpha" Thread.pass puts "beta" end t2 = Thread.new do puts "gamma" puts "delta" end t1.join t2.join