Created
August 13, 2016 00:41
-
-
Save libert-xyz/e474fa10c4d70c9b66318e022ebaa20d to your computer and use it in GitHub Desktop.
Ruby arrays
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
| 5.times {puts 'bizz buzz'} | |
| beez by | |
| beez by | |
| beez by | |
| beez by | |
| beez by | |
| => 5 | |
| 5.times do | |
| puts 'bizz buzz' | |
| end | |
| beez by | |
| beez by | |
| beez by | |
| beez by | |
| beez by | |
| => 5 | |
| an = ['dog','cat'] | |
| an.each {|b| puts b} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment