function | since v0.0-1011 | Edit |
(prn-str-with-opts objs opts)
Same as pr-str-with-opts followed by (newline)
(defn prn-str-with-opts
[objs opts]
(if (empty? objs)
"\n"
(let [sb (pr-sb-with-opts objs opts)]
(.append sb \newline)
(str sb))))