Files
Nim/tests/macros/tmacro4.nim
2015-03-17 17:50:32 +01:00

20 lines
379 B
Nim

discard """
output: "after"
"""
import
macros, strutils
macro test_macro*(n: stmt): stmt {.immediate.} =
result = newNimNode(nnkStmtList)
var ass : NimNode = newNimNode(nnkAsgn)
add(ass, newIdentNode("str"))
add(ass, newStrLitNode("after"))
add(result, ass)
when isMainModule:
var str: string = "before"
test_macro(str):
var i : integer = 123
echo str