(defn ^String tail "Returns the last n characters of s." [^String s n] (if (< (count s) n) s (.substring s (- (count s) n))))
Comments top
No comments for tail. Log in to add a comment.