return value is the “correct” way – return is a language construct, not a function.
If you want to return a tuple, use return your, values, here
There’s no need for any parenthesis (tuples are created by the , “operator”, not the ())
return value is the “correct” way – return is a language construct, not a function.
If you want to return a tuple, use return your, values, here
There’s no need for any parenthesis (tuples are created by the , “operator”, not the ())