mirror of
https://github.com/nim-lang/Nim.git
synced 2026-02-15 15:44:14 +00:00
8 lines
143 B
Nim
8 lines
143 B
Nim
import macros
|
|
|
|
macro foo(x: untyped): untyped =
|
|
echo treerepr(callsite())
|
|
result = newNimNode(nnkStmtList)
|
|
|
|
proc zoo() {.foo.} = echo "hi"
|