What is the difference between how cons
works on the following two items:
(cons 1 '(2))
; (1 2)
(cons 1 2)
; (1 . 2)
Both evaluate pair?
to true, so I'm curious how the two are different.
Does one produce:
--------
| 1 | 2 |
-------
And the other produces:
-------- --------
| 1 | -> | | 2 | X |
------- -------
Or what's the difference?
A proper list is always terminated with NIL. I.e., the first code example produces two cons-cells, one within the other, and the innermost is nil-terminated. The second example however doesn't follow the rules for standard lists, as it is just a single cons-cell with two non-nil values.
However, is you leave NIL out, the REPL will indicate that with a dot.