is there a way to quote an invocation of a reader macro? More specifically, I want to create a macro, that once evaluated, will generate a defclass statement and a respective XML file. Is this possible?
I thought about using #.( ... )
reader macros, but I assume the macro parameters aren't bound for use inside the reader macro. Is this correct?
Therefore, my second thought was to try to generate a statement that included the reader macros, but I'm unsure if there is a way to do that.
Any suggestions on generating XML files when expanding a macro invocation?
Thanks in advance for any ideas.