diff --git a/src/clj_figlet/core.clj b/src/clj_figlet/core.clj index 1211f68..e2415fd 100644 --- a/src/clj_figlet/core.clj +++ b/src/clj_figlet/core.clj @@ -120,4 +120,11 @@ (defn render [^String s flf] (->> (str/split s #"\n") (map #(render-line % flf)) - (apply concat))) \ No newline at end of file + (apply concat))) + +(defn render-out [flf & more] + (let [s (str/join " " more) + lines (render s flf)] + (->> lines + (str/join \newline) + (clojure.core/print)))) \ No newline at end of file