This website works better with JavaScript
Halaman utama
Jelajahi
Bantuan
Masuk
radu
/
LaTeX-examples
Liatin
1
Bintangi
0
Fork
0
Berkas
Masalah
0
Tarik Permintaan
0
Wiki
Pohon:
2064ba3248
Ranting
Tag
master
LaTeX-examples
/
documents
/
Programmierparadigmen
/
scripts
/
haskell
/
fakultaet-akkumulator.hs
fakultaet-akkumulator.hs
111 B
Riwayat
Mentahan
1
2
3
4
5
fakAcc n acc = if (n==0)
then acc
else fakAcc (n-1) (n*acc)
fak n = fakAcc n 1