So, I had this code:
import std/os
import system/io
echo paramStr(1)
if declared(paramStr(1)) == true:
echo It exists
else:
echo It doesn't exists
And then while I was compiling this error ocurred:
Error: identifier expected, but got: paramStr(1)
I don't know what could be the cause of it, maybe it could be the type of paramStr
?