Skip to content

Instantly share code, notes, and snippets.

@eprislac
Created February 24, 2019 01:45
Show Gist options
  • Save eprislac/e0616b6bfe7fd78547d98b40cccde677 to your computer and use it in GitHub Desktop.
Save eprislac/e0616b6bfe7fd78547d98b40cccde677 to your computer and use it in GitHub Desktop.
(defn fizzbuzziness [num]
(str "" (when (== 0 (mod num 3)) "Fizz") (when (== 0 (mod num 5)) "Buzz")))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment