mirror of
https://github.com/status-im/nim-cookbook.git
synced 2025-02-16 11:36:44 +00:00
14 lines
188 B
Nim
14 lines
188 B
Nim
import macros
|
|
|
|
macro echoAll(body: untyped): untyped =
|
|
result = newStmtList()
|
|
|
|
for s in body:
|
|
result.add newCall(bindSym"echo", s)
|
|
|
|
|
|
echoAll:
|
|
"Hello"
|
|
"World"
|
|
1234
|