54 posts 5 follows 7 followers
main=print$[if i`mod`15==0 then "FizzBuzz" else if i`mod`5==0 then "Buzz" else if i`mod`3==0 then "Fizz" else show i|i<-[1..100]]