4 lines
181 B
Swift
4 lines
181 B
Swift
func greet(person: String, hometown: String) -> String {
|
|
return "Hello \(person)! Glad you could visit from \(hometown)."
|
|
}
|
|
print(greet(person: "Bill", hometown: "Cupertino"))
|