ref: 18e623430e9c66ad5f5a0755b4bbd9401d80fe2d dir: /Test_Multi_Threading.rb/
def Test for i in 0..5 do puts i; # sleep(0.5) end end t1 = Thread.new{Test()} t2 = Thread.new{Test()} t1.join t2.join