Skip to content

Instantly share code, notes, and snippets.

@kevinjqiu
Created September 15, 2011 04:20
Show Gist options
  • Save kevinjqiu/1218525 to your computer and use it in GitHub Desktop.
Save kevinjqiu/1218525 to your computer and use it in GitHub Desktop.
wibblefish in Clojure
(defn fizzbuzz []
(map #(cond (= 0 (mod % 15)) "wibblefish" (= 0 (mod % 3)) "wibble" (= 0 (mod % 5)) "fish" :else %) (range 1 101)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment