ref: 2477ebd2f3a93498ead2b8c37344032919dc841d 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