Skip to content

Instantly share code, notes, and snippets.

@nhathm
Created March 16, 2017 13:55
Show Gist options
  • Save nhathm/4db0cfc6f4c921ff8f4372e2162e4143 to your computer and use it in GitHub Desktop.
Save nhathm/4db0cfc6f4c921ff8f4372e2162e4143 to your computer and use it in GitHub Desktop.
// Declare non-optionals variable
var notToday : String = "Tomorrow"
// Can't set non-optionals variable to nil
notToday = nil // Compile error
// Declare optionals variables
var dafug : String? = "Dafug"
var steps : Int? = 10
// Set to nil
dafug = nil
steps = nil
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment