Cons cell representation - fundamental list structure in Lisp; lists are built from cons cells. We will convert lists to their cons cell representatoin, and vice versa
NIL = () = only falsey value - the empty list and false are equivalent in Lisp
Lists, atoms, numbers, symbols - basic data types
List Operations
first, rest, second, car, cdr, composite functions like caar, caddr
list, append, cons
length, null, atom, member, endp - list predicates and operations
Function Definition and Control
(defun varname (args) ...) - defining regular named functions