RosettaCodeData/Task/Named-parameters/Swift/named-parameters-4.swift
2023-07-01 13:44:08 -04:00

4 lines
177 B
Swift

func greet(person: String, from hometown: String = "Cupertino") -> String {
return "Hello \(person)! Glad you could visit from \(hometown)."
}
print(greet(person: "Bill"))