Skip to content

Instantly share code, notes, and snippets.

@yuanw
Created June 11, 2014 05:10
Show Gist options
  • Select an option

  • Save yuanw/48c7fdd9da8b88ea0d49 to your computer and use it in GitHub Desktop.

Select an option

Save yuanw/48c7fdd9da8b88ea0d49 to your computer and use it in GitHub Desktop.
Option
var optionalString: String? = "Hello"
optionalString = nil
var optionalName: String? = nil
var gretting = "Hello!"
if let name = optionalName {
gretting = "Hello, \(name)"
} else {
gretting = "Hello anonymous"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment