writing an increment as
inc (i)
instead of
inc(i)
triggers a warning
inc2.nim(8, 9) Warning: a [b] will be parsed as command syntax; spacing is deprecated [Deprecated]
what's the reason ?
does that mean "no space between function name 'f' and opening parenthesis ("
f( )
is the way to write a function call ?
would you recommend a lint like tool that i can run on the code to learn about these aspects of nim ?