Skip to content

Instantly share code, notes, and snippets.

@josh-marasigan
Last active October 10, 2017 03:19
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 josh-marasigan/855b018cd5a85064dc8b3c7ef5092ed9 to your computer and use it in GitHub Desktop.
Save josh-marasigan/855b018cd5a85064dc8b3c7ef5092ed9 to your computer and use it in GitHub Desktop.
// Ran in the same codeblock
var box1: String?
if let boxContents = box1 {
print(boxContents)
}
---
Nothing Prints
var box2: String? = "Something"
if let boxContents = box2 {
print(boxContents)
}
---
"Something"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment