Skip to content

Instantly share code, notes, and snippets.

@josiah14
Created June 30, 2014 19:37
Show Gist options
  • Save josiah14/5082f9f343a0d4e190e6 to your computer and use it in GitHub Desktop.
Save josiah14/5082f9f343a0d4e190e6 to your computer and use it in GitHub Desktop.
fibs :: [Integer]
fibs = 0 : 1 : zipWith (+) fibs (tail fibs)
-- print the first 100 fibonacci numbers
main :: IO ()
main = print $ take 100 fibs
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment