Skip to content

Instantly share code, notes, and snippets.

@burritofanatic
Last active January 28, 2016 06:37
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 burritofanatic/446b56a5cdad1370fe90 to your computer and use it in GitHub Desktop.
Save burritofanatic/446b56a5cdad1370fe90 to your computer and use it in GitHub Desktop.
let checkingOnly = BankAccount(checkingAccount: "12345", creditCardAccount: nil)
let bothProducts = BankAccount(checkingAccount: "12345", creditCardAccount: "109876")
print(bothProducts.checkingAccount)
// 12345
print(bothProducts.creditCardAccount)
// Optional("109876")
print(bothProducts.creditCardAccount!)
// "109876"
print(checkingOnly.creditCardAccount!)
// Crash!
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment