Created
June 5, 2013 06:59
-
-
Save huydx/5712096 to your computer and use it in GitHub Desktop.
Rubyで間違いやすい配列の範囲指定 ref: http://qiita.com/items/7f9737a191bb92cca81d
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
arr = [1,2,3,4,5,6] | |
arr[1..2] | |
arr[1,2] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment