Swift - Functions
Consider this function:
What will be printed?
func describe(age: Int, of person: String) {
print("\(person) is \(age) years old.")
}
describe(age: 25, of: "Sam")What will be printed?
