Skip to content

Instantly share code, notes, and snippets.

@TarasShu
Last active May 31, 2020 17:39
Show Gist options
  • Save TarasShu/3fde5b4d54007d1482016f724acb58a8 to your computer and use it in GitHub Desktop.
Save TarasShu/3fde5b4d54007d1482016f724acb58a8 to your computer and use it in GitHub Desktop.
let nameYourMom: String? = ""
let forcedString: String = nameYourMom?
if nameYourMom != nil {
print("Your mom, \(nameYourMom!), is a bitch")
} else {
print("Please write your mother's name")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment