Skip to content

Instantly share code, notes, and snippets.

@pinktrink
Last active August 29, 2015 14:16
Show Gist options
  • Save pinktrink/d7845f4b7ec3b3f0a985 to your computer and use it in GitHub Desktop.
Save pinktrink/d7845f4b7ec3b3f0a985 to your computer and use it in GitHub Desktop.
fizzbuzz :: Int -> String
fizzbuzz n
| mod n 3 == 0 && mod n 5 == 0 = "FizzBuzz"
| mod n 3 == 0 = "Fizz"
| mod n 5 == 0 = "Buzz"
| otherwise = show n
main = mapM (print . fizzbuzz) [0..100]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment