Skip to content

Instantly share code, notes, and snippets.

@chad
Created July 23, 2010 21:44
Show Gist options
  • Save chad/488081 to your computer and use it in GitHub Desktop.
Save chad/488081 to your computer and use it in GitHub Desktop.
threads = []
10.times do |n|
threads << Thread.new do
sleep rand(3)
puts "Hell from thread number #{n}"
end
end
threads.each{|t| t.join}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment