Skip to content

Commit

Permalink
Default parameters in function
Browse files Browse the repository at this point in the history
  • Loading branch information
arthurwrls committed Nov 4, 2022
1 parent 21489cc commit e56e7e1
Showing 1 changed file with 13 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@

// Use some default parameters in function

func bookingTicket(passengerName: String = "Arthur", seatClass: String = "Economy",
timeOfDeparture: Int) -> String
{
return ("\(passengerName), your seat class is \(seatClass), and you will be departing at \(timeOfDeparture).")
}

print(bookingTicket(timeOfDeparture: 2200))

// Let`s change default parameters
print(bookingTicket(seatClass: "Business", timeOfDeparture: 9))

0 comments on commit e56e7e1

Please sign in to comment.