Skip to content

Instantly share code, notes, and snippets.

@chomado
Created November 4, 2014 10:29
Show Gist options
  • Select an option

  • Save chomado/1c17911d87d92a5010e3 to your computer and use it in GitHub Desktop.

Select an option

Save chomado/1c17911d87d92a5010e3 to your computer and use it in GitHub Desktop.
fib :: Num a => [a]
fib = 0:1:zipWith (+) fib (tail fib)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment