Created
June 20, 2016 17:13
-
-
Save kaosf/6f734229e641246c547ff28f5cb36837 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Thread.new do | |
sleep 1 | |
puts 'thread 1' | |
sleep 1 | |
end | |
Thread.new do | |
sleep 1 | |
puts 'thread 2' | |
sleep 1 | |
end | |
sleep 5 | |
puts 'finish' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment