Skip to content

Instantly share code, notes, and snippets.

@mmisono
Created August 31, 2010 16:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save mmisono/559326 to your computer and use it in GitHub Desktop.
Save mmisono/559326 to your computer and use it in GitHub Desktop.
main = do putStr $ unlines $ map fizzbuzz [1..100]
fizzbuzz :: Int -> String
fizzbuzz x | x `mod` 15 == 0 = "FizzBuzz"
| x `mod` 5 == 0 = "Buzz"
| x `mod` 3 == 0 = "Fizz"
| otherwise = show x
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment