Skip to content

Instantly share code, notes, and snippets.

@VoQn
Created October 13, 2011 08:57
Show Gist options
  • Save VoQn/1283784 to your computer and use it in GitHub Desktop.
Save VoQn/1283784 to your computer and use it in GitHub Desktop.
FibBuzz -- map (FizzBuzz . Fibonacci) [1..100]
main=mapM_(putStrLn.f.(b!!))[0..99];b=1:scanl(+)1b;(%)=mod;f n|n%15<1=f 3++f 5|n%5<1="Buzz"|n%3<1="Fizz"|0<1=show n
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment