Created
June 14, 2019 12:47
-
-
Save zah/ce81db77fdd9fd204ad46409bcba6617 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import macros | |
template generateCode(body: untyped) = | |
iterator yields: NimNode = body | |
macro payload: untyped = | |
result = newStmtList() | |
for node in yields(): | |
result.add node | |
payload() | |
generateCode: | |
yield quote do: | |
echo "hello" | |
yield quote do: | |
echo "world" | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment