3 lines
70 B
Clojure
3 lines
70 B
Clojure
|
|
(defn str-prepend [a-string, to-prepend]
|
||
|
|
(str to-prepend a-string))
|