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