struct User { let name: String let email: String } func login(user: String, pass: String) -> Bool { return true } static func helper() { return "helper" } enum UserStatus { case active case inactive }