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