Untitled
import Macros
macro scope*(body: untyped): untyped =
if kind(body) != nnkDo: return body
else:
result = newNimNode(nnkStmtListExpr)
for child in body[6]: add(result, child)
let a = scope do:
var s = newSeq[int]()
for i in .. <10:
add s, i
s
echo aINFO