Last active
October 22, 2018 22:15
-
-
Save andreaslydemann/501fda0bc396c9b67f15683cecf5ca4d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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