printing
writes values to standard output
Usage:
(print form*) (println form*) (pr form*) (prn form*)These functions print space-separated values to *out*. print and println use the regular string conversion. pr and prn use reader-oriented output via str!. println and prn append a trailing newline.
An Example
(println "hello" 42)
(prn {:name "ale"})