Lisp Vocabulary Explanations

LISP – LIST Processing (http://en.wikipedia.org/wiki/Lisp_%28programming_language%29) CONS – CONStruct memory objects with hold two values or pointers to values (http://en.wikipedia.org/wiki/Cons) Use CONS to stick things together in a list CAR (Contents of the Address part of Register number) Use CAR to get the first member of the list CDR (Contents of the Decrement part of Register … Read more