(defn ^String repeat "Returns a new String containing s repeated n times." [n ^String s] (apply str (clojure.core/repeat n s)))
Comments top
No comments for repeat. Log in to add a comment.