Functions

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