Skip to content

Instantly share code, notes, and snippets.

@fumieval
Created June 22, 2012 07:44
Show Gist options
  • Save fumieval/2971089 to your computer and use it in GitHub Desktop.
Save fumieval/2971089 to your computer and use it in GitHub Desktop.
import Prelude
fibs = : 1 (: 1 (zipWith + fibs (tail fibs)))
main = putStr (unlines (map showInteger fibs))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment