summary refs log tree commit diff stats
path: root/tests/tquotewords.nim
blob: 462293b404b1364a16c15fc18f02dc79182d2aa1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# Test an idea I recently had:

import macros

macro quoteWords(n: expr): expr = 
  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