Created
February 24, 2019 01:45
-
-
Save eprislac/e0616b6bfe7fd78547d98b40cccde677 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(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