1.3.0 permalink Arrow_down_16x16

comment

clojure.core

  • (comment & body)
Ignores body, yields nil

1 Example top

  • ;; The commented forms do not get executed
    user=> (comment
             (functioncall-1)
             (functioncall-2))
    nil
Log in to add / edit an example.

See Also top

Log in to add a see also.

Plus_12x12 Minus_12x12 Source clojure/core.clj:4161 top

(defmacro comment
  "Ignores body, yields nil"
  {:added "1.0"}
  [& body])
Vars in clojure.core/comment:
Used in 0 other vars

Comments top

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