Skip to content

Instantly share code, notes, and snippets.

@W-Mills
Created June 17, 2018 22:29
Show Gist options
  • Save W-Mills/f33ec8d695df0b0df771ce91e6783e5a to your computer and use it in GitHub Desktop.
Save W-Mills/f33ec8d695df0b0df771ce91e6783e5a to your computer and use it in GitHub Desktop.
test
loop do
puts 'This is the outer loop.'
loop do
puts 'This is the inner loop.'
break
end
break
end
puts 'This is outside all loops.'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment