Skip to content

Instantly share code, notes, and snippets.

@skilldrick
Created November 2, 2011 23:35
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 skilldrick/1335305 to your computer and use it in GitHub Desktop.
Save skilldrick/1335305 to your computer and use it in GitHub Desktop.
FizzBuzz
fizzBuzz max = [fizzBuzzConvert x | x <- [1..max]]
fizzBuzzConvert x
| x `mod` 15 == 0 = "FizzBuzz"
| x `mod` 3 == 0 = "Fizz"
| x `mod` 5 == 0 = "Buzz"
| otherwise = show x
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment