Skip to content

Instantly share code, notes, and snippets.

@ukstudio
Created February 17, 2010 11:39
Show Gist options
  • Select an option

  • Save ukstudio/306528 to your computer and use it in GitHub Desktop.

Select an option

Save ukstudio/306528 to your computer and use it in GitHub Desktop.
(map
(fn [n] (cond (= (mod n 15) 0) "FizzBuzz"
(= (mod n 3) 0) "Fizz"
(= (mod n 5) 0) "Buzz"
:else n))
(range 1 101))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment