Skip to content

Instantly share code, notes, and snippets.

@burritofanatic
Created January 28, 2016 06:22
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/17689590b4975c5b59b5 to your computer and use it in GitHub Desktop.
Save burritofanatic/17689590b4975c5b59b5 to your computer and use it in GitHub Desktop.
class BankAccount {
let checkingAccount: String
let creditCardAccount: String?
init(checkingAccount: String, creditCardAccount: String?) {
self.checkingAccount = checkingAccount
self.creditCardAccount = creditCardAccount
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment