user=> (println "Hello world.") Hello world. nil
Same as pr followed by (newline). Observes *flush-on-newline*
Prints the object(s) to the output stream that is the current value
(defn println "Same as print followed by (newline)" {:added "1.0" :static true} [& more] (binding [*print-readably* nil] (apply prn more)))
Comments top
No comments for println. Log in to add a comment.