summary refs log blame commit diff stats
path: root/tests/macros/tmacro4.nim
blob: 7c2839aba4042b52920b7a6153d8d8eb8941fc0d (plain) (tree)
1
2
3
4
5
6
7
8
9






                  
                                                   
                                  
                                         


                                  
          



                            
discard """
  output: "after"
"""

import
  macros, strutils

macro test_macro*(s: string, n: untyped): untyped =
  result = newNimNode(nnkStmtList)
  var ass : NimNode = newNimNode(nnkAsgn)
  add(ass, newIdentNode("str"))
  add(ass, newStrLitNode("after"))
  add(result, ass)
when true:
  var str: string = "before"
  test_macro(str):
    var i : integer = 123
  echo str