There is printf. It prints directly to stdout.
How about sprintf, which formats the same way as printf, but returns a string with no side-effects?
|
feedback
|
|
In Clojure it's called | |||
|
feedback
|
|
You should check out To answer your question, with
Note that if
| |||
|
feedback
|
|
Consider using the with-out-str macro:
Or just call java.lang.String's format method:
| |||
|
feedback
|