Untitled
import macros
#[
Compare to the expresion newSeq[int](10), which is represented by the AST:
StmtList
Call
BracketExpr
Ident !"newSeq"
Ident !"int"
IntLit 10
]#
macro dseq(len : int) : untyped =
result = quote do:
newSeq[int](`len`)
let a = dseq(10)INFO