when using a .nims file and running nim gbc ./test.nim the hint pragma does nothing
task gbc, "buids gbc game":
{.hint.:"test hint"}
var paramC = paramCount()
var filePath = paramStr(paramC)
var ast = getFileAst(filePath)
echo treeRepr(ast)
though when using that pragma in a regular nim file it works fine. I'm just wondering if it is even possible to do with nimscript