blob: 81f30c9a9a30887fce8a6d3e6c48eac2ed8d1785 (
plain) (
tree)
|
|
discard """
file: "tquotewords.nim"
output: "thisanexample"
"""
# 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
|