Skip to content

Instantly share code, notes, and snippets.

@boxp
Created June 3, 2013 20:54
Show Gist options
  • Save boxp/5701327 to your computer and use it in GitHub Desktop.
Save boxp/5701327 to your computer and use it in GitHub Desktop.
clojureでFizz Buzz
(defn fizzbuzz
"fizzbuzz"
[x]
(cond (and (= (mod x 3) 0)
(= (mod x 5) 0)) "Fizz Buzz"
(= (mod x 3) 0) "Fizz"
(= (mod x 5) 0) "Buzz"
:else x))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment