Skip to content

Instantly share code, notes, and snippets.

@chreke
Created January 13, 2017 16:24
Show Gist options
  • Save chreke/351e022def61fe77c9330787c709d2b1 to your computer and use it in GitHub Desktop.
Save chreke/351e022def61fe77c9330787c709d2b1 to your computer and use it in GitHub Desktop.
Some Swift example code
var maybeString: String?
var maybeAnotherString: String?
maybeString = "hej"
// Optional binding
if let aString = maybeString {
print("This is a string: \(aString)")
}
// Optional chaining
let count: Int? = maybeAnotherString?.characters.count
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment