;; Click the link to clojure.core/format under See also for ;; more extensive examples. printf and format take the same ;; arguments -- the difference is that format returns a formatted ;; string, whereas printf sends the formatted string to *out*.
(defn printf
"Prints formatted output, as per format"
{:added "1.0"
:static true}
[fmt & args]
(print (apply format fmt args)))
Comments top
No comments for printf. Log in to add a comment.