I declared a function, for example,
func test(a: Int, b: Int)
but when I invoke it, i have to put a code like this:
test(12, b: 32)
It looks so weird !
I declared the test function with symmetrical parameters, but the function call is not symmetric.
How can I declare the function to make the function call exactly like this:
test(12, 32)