Difference between revisions of "Fizzbuzz"

From HaskellWiki
Jump to navigation Jump to search
(Started page, simple solution)
 
m (Reverted edits by Tomjaguarpaw (talk) to last revision by AlexMcNeil)
 
(One intermediate revision by one other user not shown)

Latest revision as of 15:18, 6 February 2021

I was reading this so I came up with a quick solution in Haskell.

fizz :: Int -> String
fizz n | n `mod` 15 == 0  = "FizzBuzz"
       | n `mod` 3  == 0  = "Fizz"
       | n `mod` 5  == 0  = "Buzz"
       | otherwise        = show n

main :: IO()
main = mapM_ putStrLn $ map fizz [1..100]

There's also a page Haskell Quiz/FizzBuzz with another solution.