RosettaCodeData/Task/Reverse-a-string/Clojure/reverse-a-string-2.clj

2 lines
47 B
Clojure

(defn str-reverse [s] (apply str (reverse s)))