Skip to content

Instantly share code, notes, and snippets.

@nabe256
Created April 20, 2012 19:43
Show Gist options
  • Save nabe256/2431270 to your computer and use it in GitHub Desktop.
Save nabe256/2431270 to your computer and use it in GitHub Desktop.
Fibonacci number 3
fib :: Num a => [a]
fib = 0:1:zipWith (+) (fib) (tail(fib))
main = print $ take 10 fib
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment