Swift - Functions
Consider this Swift function:
func describe(person: String = "Unknown", age: Int = 0) {
print("\(person) is \(age) years old.")
}How would you call it to print "Alice is 30 years old."?