Skip to content

Instantly share code, notes, and snippets.

@xcobar

xcobar/rb.rb Secret

Last active June 7, 2020 16:00
Show Gist options
  • Save xcobar/679de87e2724b68362a61b9711836e87 to your computer and use it in GitHub Desktop.
Save xcobar/679de87e2724b68362a61b9711836e87 to your computer and use it in GitHub Desktop.
t = Thread.new do
puts "first message"
sleep 2
puts "second message"
end
puts "third message"
t.join
# third message
# first message
# 2 sec wait
# second message
##### I expect #####
# first message
# third message
# 2 sec wait
# second message
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment