Home > database >  Dotted list in lisp
Dotted list in lisp

Time:07-11

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?

CodePudding user response:

(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.

  • Related