There was an error while loading. Please reload this page.
template test: bool = true # compiles: if not test: echo "wtf" # does not compile: template x = if not test: echo "wtf" x
got template(): bool, expected ...
compiles
template test: bool = true template x = if not test(): echo "wtf" x
not
if test:
$ nim -v Nim Compiler Version 1.0.6