4 lines
157 B
Clojure
4 lines
157 B
Clojure
|
|
;; cl-format based version
|
||
|
|
(defn wrap-line [size text]
|
||
|
|
(clojure.pprint/cl-format nil (str "~{~<~%~1," size ":;~A~> ~}") (clojure.string/split text #" ")))
|