How to create an alias for macro ?
So far I could use
template A*(body: untyped): typed = B(body)
macro B*(body: untyped): typed =
# if there are ident checks, also alias has to be checked
if anIdent == newStrLitNode("B") or
anIdent == newStrLitNode("A"):
discard