Skip to content

Instantly share code, notes, and snippets.

@maxjacobson
Created August 8, 2017 14:05
Show Gist options
  • Save maxjacobson/6fbe78fedda0e1a578e389a50e7abef3 to your computer and use it in GitHub Desktop.
Save maxjacobson/6fbe78fedda0e1a578e389a50e7abef3 to your computer and use it in GitHub Desktop.
Thread.new do
begin
10.times do
puts "Running inside thread..."
sleep rand
end
raise "boom!"
rescue => ex
puts "An error occured: #{ex}"
Kernel.exit(1)
end
end
loop do
puts "Running outside thread"
sleep rand
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment