Skip to content

Instantly share code, notes, and snippets.

@rayfix
Created February 12, 2017 23:05
Show Gist options
  • Save rayfix/2ae458c5463652c74c662e4828a31bc6 to your computer and use it in GitHub Desktop.
Save rayfix/2ae458c5463652c74c662e4828a31bc6 to your computer and use it in GitHub Desktop.
let str = "Hello, Keita"
var index = str.characters.startIndex
while index < str.characters.endIndex {
print(str.characters[index])
str.characters.formIndex(after: &index)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment