Skip to content

Instantly share code, notes, and snippets.

;;; code as data
(+ 1 2 3 (* 2 2))
;; => 10
(def var1 (+ 1 2 3 (* 2 2))) ; ? (def symbol doc-string? init?)
;; => #'cljtest.core/var1
var1
;; => 10
(def var2 '(+ 1 2 3 (* 2 2)))
;; => #'cljtest.core/var2
var2