print

added
1.0

ns
clojure.core

type
function

(print & more)

Prints the object(s) to the output stream that is the current value
of *out*.  print and println produce output for human consumption.

                ;; same as println, but without a newline
user> (print "foo") (print "foo")
foofoo