This website requires JavaScript.
Explore
Help
Sign in
tex-projects
/
LaTeX-examples
Watch
2
Star
0
Fork
You've already forked LaTeX-examples
0
mirror of
https://github.com/MartinThoma/LaTeX-examples.git
synced
2025-04-25 14:28:05 +02:00
Code
Activity
f93467bad7
LaTeX-examples
/
documents
/
Programmierparadigmen
/
scripts
/
haskell
/
fakultaet-akkumulator.hs
5 lines
111 B
Haskell
Raw
Normal View
History
Unescape
Escape
SW
2014-02-02 13:49:19 +01:00
fakAcc
n
acc
=
if
(
n
==
0
)
then
acc
else
fakAcc
(
n
-
1
)
(
n
*
acc
)
Haskell angefangen
2014-02-01 15:32:13 +01:00
fak
n
=
fakAcc
n
1
Copy permalink