How do we have Nim function default parameter/argument for mutable ( r/w ) argument the simplest i.e. usually in boolean? e.g. illustration:
proc foo( m:int; n :var int) = # <- how the correct one
if n :
echo 7+m+n
else :
echo m
foo 7 # <- as it's demanded