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