;; ' is the shortcut for quote
user> (= 'a (quote a))
true
;; quoting keeps something from being evaluated
user> (quote (println "foo"))
(println "foo")
;; ' is the shortcut for quote
user> (= 'a (quote a))
true
;; quoting keeps something from being evaluated
user> (quote (println "foo"))
(println "foo")
Comments top
No comments for quote. Log in to add a comment.