Prints the object(s) to the output stream that is the current value
of *out*. print and println produce output for human consumption.
(defn print
"Prints the object(s) to the output stream that is the current value
of *out*. print and println produce output for human consumption."
{:added "1.0"
:static true}
[& more]
(binding [*print-readably* nil]
(apply pr more)))
Comments top
No comments for print. Log in to add a comment.