Created
June 5, 2019 18:38
-
-
Save eterps/4ab5c21458b9b984089a0805e91c4390 to your computer and use it in GitHub Desktop.
This file contains 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
# Currently doesn't work | |
import macros | |
macro do_sequentially(idx: int, statements: varargs[untyped]): untyped = | |
result = nnkStmtList.newTree() | |
do_sequentially(1): | |
do: echo "Foo" | |
do: echo "Bar" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment