Skip to content

Instantly share code, notes, and snippets.

@emiln
Created January 2, 2015 13:22
Show Gist options
  • Save emiln/f17a305a5e3068f37f5f to your computer and use it in GitHub Desktop.
Save emiln/f17a305a5e3068f37f5f to your computer and use it in GitHub Desktop.
Unconditional FizzBuzz
(let [f "Fizz" b "Buzz" n nil]
(map #(or (["FizzBuzz" n n f n b f n n f b n f n n] (mod % 15)) %)
(range 1 101)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment