Nim requires you to use consistent spacing around binary expressions. So you 
can do no spaces on both sides, `a+b`, one space, `a + b`, two spaces `a + b` 
but you can't do one space on the left and no spaces on the right, `a +b`. As 
people said, this is a quirk of the command syntax `someProc arg1, arg2`.

Reply via email to