This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
struct User { | |
let firstName: String | |
let lastName : String | |
var birthDay : Date? | |
func isValid() -> Bool { | |
return firstName == "max" | |
} | |
} |