Sujet : Re: NIL cons cell
De : ram (at) *nospam* zedat.fu-berlin.de (Stefan Ram)
Groupes : comp.lang.lispDate : 27. Jan 2024, 14:04:38
Autres entêtes
Organisation : Stefan Ram
Message-ID : <NIL-20240127140420@ram.dialup.fu-berlin.de>
References : 1
Daniel Cerqueira <
dan.list@brilhante.top> writes:
Notice on the representation of NIL. Is this always an empty cons cell?
NIL is a special value that is /not/ the same as `(NIL . NIL),
which is a dotted pair ("cell") with its CAR and CDR being NIL.
The notation `() for NIL does /not/ mean that NIL is represented
by an empty cons cell.
`(1 2) is `( 1 . ( 2 . NIL )).