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):
e7e4f64df5
Rami (Branch)
Tag
master
LaTeX-examples
/
documents
/
Programmierparadigmen
/
scripts
/
haskell
/
fakultaet-akkumulator.hs
fakultaet-akkumulator.hs
79 B
Cronologia
Originale
1
2
3
fakAcc n acc = if (n==0) then acc else fakAcc (n-1) (n*acc)
fak n = fakAcc n 1