Basic Syntax 1; Comments start with semicolon 2 3;; Variables 4(defvar global-var 42) ; Global variable (convention: name) 5(defparameter param 100) ; Always re-evaluated 6(let ((x 10) (y 20)) ; Local variables 7 (+ x y)) 8 9;; Constants 10(defconstant +pi+ 3.14159) ; Convention: +name+ 11 12;; Functions 13(defun …
Read MoreCollection of Lisp family language snippets including Common Lisp, Scheme, and Clojure. Topics Common Lisp Essentials - Common Lisp basics and useful patterns Scheme Essentials - Scheme programming fundamentals Clojure Essentials - Clojure for JVM development
Read More