Skip to content

Instantly share code, notes, and snippets.

@Wollw
Created March 25, 2012 22:52
Show Gist options
  • Save Wollw/2200627 to your computer and use it in GitHub Desktop.
Save Wollw/2200627 to your computer and use it in GitHub Desktop.
FizzBuzz list comprehension
main=mapM_ putStrLn[case(if x`mod`3==0then"Fizz"else"")++(if x`mod`5==0then"Buzz"else"")of""->show x;s->s|x<-[1..100]]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment