quote

clojure.core

1 Example top

  • ;; ' is the shortcut for quote
    user> (= 'a (quote a))
    true
    
    ;; quoting keeps something from being evaluated
    user> (quote (println "foo"))
    (println "foo")
Log in to add / edit an example.

See Also top

Log in to add a see also.

Comments top

No comments for quote. Log in to add a comment.