I need to create a pair that contains two pairs inside using Common Lisp.
The output needs to be:
((1 . 2) . (3 . 4))
Literature states (cons (cons 1 2) (cons 3 4))
should output what I need but when I run that I obtain:
((1 . 2) 3 . 4)
Any help is appreciated.
This will do it:
(cons (cons 1 2) (cons (cons 3 4) empty))
Good luck!