PPT Slide
Cons stands for construct.
It produces a new dotted pair or “cons cell”.
produces the dotted pair ( x • y ).
(cons ’a ’b) produces ( A • B )
which has the data structure
produces a new list with x as first element
(cons ’a (list ’b ’c) ) produces ( A B C )