summary refs log tree commit diff stats
path: root/tests/macros/tmacro4.nim
blob: a563693690f2fca15d144fafc9b26d97c5393354 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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