Dotted list in lisp

202 Views Asked by At

I'm trying to recreate this structure with lisp (key . (list of values))

Ex: (a . (b c))

I managed to recreate the opposite ((a b) . c), but is not what i need. Is possible?

1

There are 1 best solutions below

4
Barmar On BEST ANSWER
(cons 'a (list 'b 'c))

Note that when you print this it will be printed as

(A B C)

because a cons whose cdr is a list is printed using list notation, not dotted notation.