Skip to content

Instantly share code, notes, and snippets.

@mizukmb
Created May 5, 2017 02:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mizukmb/c40aa089a2da6b475c34d245b5ee0902 to your computer and use it in GitHub Desktop.
Save mizukmb/c40aa089a2da6b475c34d245b5ee0902 to your computer and use it in GitHub Desktop.
fizzBuzz :: Integer -> String
fizzBuzz 0 = "0"
fizzBuzz fz
| fz `mod` 15 == 0 = "FizzBuzz"
| fz `mod` 3 == 0 = "Fizz"
| fz `mod` 5 == 0 = "Buzz"
| otherwise = show fz
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment