Skip to content

Instantly share code, notes, and snippets.

@andreaslydemann
Last active October 22, 2018 22:15
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 andreaslydemann/501fda0bc396c9b67f15683cecf5ca4d to your computer and use it in GitHub Desktop.
Save andreaslydemann/501fda0bc396c9b67f15683cecf5ca4d to your computer and use it in GitHub Desktop.
let myOptional: Int? = 10
if let myInt = myOptional {
print("myInt has a value of \(myInt).")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment