Guest User

Untitled

a guest
Jan 23rd, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. Person {
  2. var firstname: String
  3. var middlename: String? //we created the optional with the ?
  4. var lastname: String
  5.  
  6. func fullName() -> () {
  7. print("Your fullname is \(firstname) \(middlename!) \(lastname)")
  8. }
  9. }
  10.  
  11. let me = Person(firstname: "Abel", middlename: "Agoi", lastname: "Adeyemi")
  12.  
  13. me.fullName() //will return "Your fullname is Abel Agoi Adeyemi"
Add Comment
Please, Sign In to add comment