Skip to content

Instantly share code, notes, and snippets.

@PankajGaikar
Last active April 20, 2022 20:26
Show Gist options
  • Save PankajGaikar/09bcc212240cbb3f258ff5b60a8bf571 to your computer and use it in GitHub Desktop.
Save PankajGaikar/09bcc212240cbb3f258ff5b60a8bf571 to your computer and use it in GitHub Desktop.
User
struct User {
let firstName: String
let lastName : String
var birthDay : Date?
func isValid() -> Bool {
return firstName == "max"
}
}
let testUser = User(firstName: "max", lastName: "max's last name")
assert(testUser.isValid() == true)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment