fizzbuzz n 
  | mod n 15 == 0 = "FizzBuzz"
  | mod n  3 == 0 = "Fizz"
  | mod n  5 == 0 = "Buzz"
  | otherwise     = show n 
  
main = do 
  let fbuzz n = map fizzbuzz [1..n]
  mapM_ print $ fbuzz 15

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: