Functions
- Using functions
- pretty print function:
(pprint "hello world")
- Create Functions
(defun myPrinter (s) (pprint s))
(myPrinter "Hello World")
;; Hello World
(pprint "hello world")
(defun myPrinter (s) (pprint s))
(myPrinter "Hello World")
;; Hello World