Skip to content

Instantly share code, notes, and snippets.

@jyaunches
Created September 28, 2017 16:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jyaunches/e14c3e1f1222da9d3d2763ba82444632 to your computer and use it in GitHub Desktop.
Save jyaunches/e14c3e1f1222da9d3d2763ba82444632 to your computer and use it in GitHub Desktop.
Swift collections for-in basic
let numbers = 1...3
for number in numbers {
print(number)
}
// Prints "1"
// Prints "2"
// Prints "3"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment