Swift - Functions
Given the function:
Which is the correct way to call this function to print
func update(user name: String, age years: Int) {
print("User: \(name), Age: \(years)")
}Which is the correct way to call this function to print
User: John, Age: 30?