Skip to content

Instantly share code, notes, and snippets.

@joker1007
Created August 7, 2012 06:25
Show Gist options
  • Save joker1007/3282343 to your computer and use it in GitHub Desktop.
Save joker1007/3282343 to your computer and use it in GitHub Desktop.
fizzbuzz :: [String]
fizzbuzz = [fb x | x <- [1..]]
where
fb x
| x `mod` 15 == 0 = "fizzbuzz"
| x `mod` 5 == 0 = "buzz"
| x `mod` 3 == 0 = "fizz"
| otherwise = show x
main :: IO ()
main = mapM_ putStrLn $ take 100 fizzbuzz
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment