Skip to content

Instantly share code, notes, and snippets.

@deltam
Created November 14, 2011 13:03
Show Gist options
  • Save deltam/1363911 to your computer and use it in GitHub Desktop.
Save deltam/1363911 to your computer and use it in GitHub Desktop.
FizzBuzz on Clojure
(println
(map #(cond (zero? (mod % (* 3 5))) "FizzBuzz"
(zero? (mod % 3)) "Fizz"
(zero? (mod % 5)) "Buzz"
:else %)
(range 1 101)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment