Skip to content

Instantly share code, notes, and snippets.

@davinmsu
Created September 3, 2015 10:41
Show Gist options
  • Save davinmsu/f9f444f241c7979f129c to your computer and use it in GitHub Desktop.
Save davinmsu/f9f444f241c7979f129c to your computer and use it in GitHub Desktop.
threads = []
threads << Thread.new do
#ololo
end
threads << Thread.new do
#ololo
end
threads << Thread.new do
#ololo
end
threads << Thread.new do
#ololo
end
threads.each { |t| t.join }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment