Ok, so if I have this
proc a(b: string) = echo b
Run
I can use only this
a b
a(b)
b.a
b.a()
Run
But if I have any proc without args, I cannot just call it without ()? May be
it's clever, it could be confusing having vars and procedures without ()
