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?
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?
Note that when you print this it will be printed as
because a cons whose cdr is a list is printed using list notation, not dotted notation.