I have to remake backquote (with unquote and unquote-splicing) without using the builtins reader macros `,@ The behaviour expected is:
> (BACKQUOTE (A B (LIST ‘C ‘D) (COMA (LIST ‘E ‘F)
(COMA-AT (LIST ‘G ‘H)))
(A B (LIST ‘C ‘D) (E F) G H)
I try to do it with a macro but the results are no the expected.
Many thanks!!!
Any hints of what could be done?