Hi, I have a simple question. The Nim manual says that integer operations will promote the smaller of the two to the larger, but that behavior only seems to hold true with specific operand order, eg:
`` var arg1:uint32 var arg2:uint16 arg1 = 10 arg2 =12 echo(arg1 + arg2) #works echo(arg2 + arg1) #fails `` Why does the order of addition matter?
