summary refs log blame commit diff stats
path: root/tests/run/tquotewords.nim
blob: 76b8d8af775b1de701510d8a58a7297b07cdee20 (plain) (tree)
1
2
3
4
5
6
7
8
9
10



                         



                              

                                                













                                            

 
discard """
  file: "tquotewords.nim"
  output: "thisanexample"
"""
# Test an idea I recently had:

import macros

macro quoteWords(n: expr): expr {.immediate.} = 
  let n = callsite()
  result = newNimNode(nnkBracket, n)
  for i in 1..n.len-1:
    expectKind(n[i], nnkIdent)
    result.add(toStrLit(n[i]))
  
const
  myWordList = quoteWords(this, an, example)

var s = ""
for w in items(myWordList):
  s.add(w)

echo s #OUT thisanexample