Skip to content

Instantly share code, notes, and snippets.

@bjhaid
Last active August 29, 2015 13:56
Show Gist options
  • Save bjhaid/9222992 to your computer and use it in GitHub Desktop.
Save bjhaid/9222992 to your computer and use it in GitHub Desktop.
fizzbuzz in clojure
(map #(cond
(= 0 (mod % 15)) "FizzBuzz"
(= 0 (mod % 5)) "Buzz"
(= 0 (mod % 3)) "Fizz"
:else %)
(range 1 101))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment