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