Created
June 17, 2018 22:29
-
-
Save W-Mills/f33ec8d695df0b0df771ce91e6783e5a to your computer and use it in GitHub Desktop.
test
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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