notes

#clojurescript

() vs. '()2021. 7. 28.

(+ 1 2 3 4)     ;; <1>

'(+ 1 2 3 4)    ;; <2>
(+ 1 2 3 4)     ;; <1>

'(+ 1 2 3 4)    ;; <2>
  1. A list that is interpreted as an expression and evaluated
  2. Prevent evaluation of a list by starting it with a single quote

Tags