Skip to content

Instantly share code, notes, and snippets.

@Sethathi
Last active June 24, 2020 13:34
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 Sethathi/b56bc78006d27e09b8a276abd115b188 to your computer and use it in GitHub Desktop.
Save Sethathi/b56bc78006d27e09b8a276abd115b188 to your computer and use it in GitHub Desktop.
// Why won't this compile?
var name: String?
if name != nil {
displayName(name: name)
}
func displayName(name: String) {
// display name
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment