Skip to content

Instantly share code, notes, and snippets.

@kaosf
Created June 20, 2016 17:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kaosf/6f734229e641246c547ff28f5cb36837 to your computer and use it in GitHub Desktop.
Save kaosf/6f734229e641246c547ff28f5cb36837 to your computer and use it in GitHub Desktop.
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