Skip to content

Instantly share code, notes, and snippets.

@Raynes
Created December 22, 2010 17:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Raynes/51073bc37369fcda9368 to your computer and use it in GitHub Desktop.
Save Raynes/51073bc37369fcda9368 to your computer and use it in GitHub Desktop.
(defn count-num-chars [^String s]
(loop [s s acc 0]
(if (seq s)
(recur (rest s) (if (= (first s) \space) acc (inc acc)))
acc)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment