Created
June 3, 2014 14:22
-
-
Save seanhess/b3df4c1be0965527b70e to your computer and use it in GitHub Desktop.
Fib Haskell
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
fib 0 = 0 | |
fib 1 = 1 | |
fib n = fib (n-1) + fib (n-2) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment