Syntax
- One of the hallmarks of lisp is that the data resembles the code.
- Lisp is dynamically typed
- Parens. Parens everywhere.
(+ 1 2)
;; 3
;; VARIABLES
(setf foo "hello world")
(pprint foo)
;; hello world
(pprint (string-upcase foo))
;; HELLO WORLD