Skip to content

Instantly share code, notes, and snippets.

@queso
Created October 4, 2009 03:55
Show Gist options
  • Save queso/201107 to your computer and use it in GitHub Desktop.
Save queso/201107 to your computer and use it in GitHub Desktop.
begin
1.upto(10) do |i|
puts "Outer loop #{i}"
11.upto(20) do |j|
puts "Inner loop #{j}"
raise "Error"
end
end
rescue Exception => msg
puts msg
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment