Hi, I have a LISP question. For the interface I’m building I need the lists to have an extra level of parenthesis.
I’m making two inputs
A. (50 4)
B. (4 2 4 5 8)
C. ? (Question mark)
that should end in this list:
(? (((50 4) (4 2 4 5 8))))
It would be practical in the patch I’m building, that I can write one level of parenthesis for A and B, and that the patch adds an extra level. Now I have to write both levels as in the attached example.
Best
Dagfinn