Created
July 28, 2016 21:18
-
-
Save amlcurran/2a0b1c4a02f39716d7fd384694b525d8 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
var string: String = "hello" | |
string = nil // fails to compile - trying to assign nil to a non-optional value | |
var optionalString: String? = "hello" | |
optionalString = nil // compiles fine, as we've declared this to be an optional string |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment