This website works better with JavaScript
Home
Esplora
Aiuto
Accedi
radu
/
LaTeX-examples
Segui
1
Vota
0
Forka
0
File
Problemi
0
Pull Requests
0
Wiki
Albero (Tree):
7e76256e4e
Rami (Branch)
Tag
master
LaTeX-examples
/
documents
/
Programmierparadigmen
/
scripts
/
haskell
/
fibonacci.hs
fibonacci.hs
87 B
Cronologia
Originale
1
2
3
4
fib n
| (n == 0) = 0
| (n == 1) = 1
| otherwise = fib (n - 1) + fib (n - 2)