Untitled
import macros
macro where(n: untyped): typed =
result = newStmtList()
for i in n.len-1..0:
result.add(n[i])
where:
echo 1
where:
echo a
let a = b
let b = 1
INFO
import macros
macro where(n: untyped): typed =
result = newStmtList()
for i in n.len-1..0:
result.add(n[i])
where:
echo 1
where:
echo a
let a = b
let b = 1