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