What is the correct way to call this function?
func myFunc(_ a: Int, b: Int) -> Int { return a + b }
myFunc(a: 5, b: 6)
myFunc(5, 6)
myFunc(a, b) Reference: The Swift Programming Language: Language Guide: Functions: Function Argument Labels and Parameter Names
myFunc(a, b)
myFunc(5, b: 6)