Last active
January 10, 2018 01:48
-
-
Save gbpereira/17bbc5e38f0d7bb7a867 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| # while | |
| while a < 4 | |
| puts a | |
| a += 1 | |
| end | |
| begin | |
| puts a | |
| a += 1 | |
| end while a < 4 | |
| # loop | |
| loop do | |
| puts 'Digite algo: ' | |
| line = gets | |
| break if line =~ /q|Q/ | |
| end | |
| # for | |
| for element in arr | |
| puts element | |
| end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment