Replies: 1 comment 2 replies
-
Not hard, steal mine which follows this =) To be able to quasiQuote/unquote is the coolest for code (and other lists) constructions, can't even imagine having a macro facility on the one hand but not those on the other?.. |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
In the current implementation of the language and macro processor, every argument passed to a macro function is evaluated as a macro if possible.
However this is a problem for some nodes that ressemble macros but aren't, eg
(@ list index)
the index could be a node index in the list instead of an element index.There are multiple solutions to this:
I went with the second solution, see: #472 and would like to know what you think about it
Beta Was this translation helpful? Give feedback.
All reactions