Skip to content

Instantly share code, notes, and snippets.

@notblizzard
Created June 22, 2015 16:42
Show Gist options
  • Save notblizzard/ef0311b54c27c5822d5f to your computer and use it in GitHub Desktop.
Save notblizzard/ef0311b54c27c5822d5f to your computer and use it in GitHub Desktop.
@threads = []
@threads << Thread.new {
1.upto(100) do |x|
puts x
end
}
@threads.map(&:join)
@threads << Thread.new {
1.upto(100) do |x|
puts x
end
}
@threads.map(&:join)
# Prevent the first thread from restarting
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment