Created
April 2, 2016 15:57
-
-
Save masters3d/9b664ccfcc75df09e4f9bc859ad31934 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
let hey = [1,2,23,3,4,5,5,6,6,7,7,8] | |
let slice = hey[4...10] | |
for each in slice.indices{ | |
print(slice[each]) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment