Files
Nim/tests/compile/teval1.nim
2013-03-16 23:53:07 +01:00

20 lines
280 B
Nim

import macros
proc testProc: string {.compileTime.} =
result = ""
result = result & ""
when true:
macro test(n: stmt): stmt {.immediate.} =
result = newNimNode(nnkStmtList)
echo "#", testProc(), "#"
test:
"hi"
const
x = testProc()
echo "##", x, "##"