On 1/2/19 2:11 PM, Simon Proctor wrote:
Have you tried defining your return values in the signature?sub AddThree( Int $a, Int $b, Int $c --> Int) {...}With this the compiler knows what your function is supposed to return and can earn you in advance.
I did and it blew up in my face so I stopped doing it.