5 lines
66 B
Text
5 lines
66 B
Text
|
|
(de fact (N)
|
||
|
|
(if (=0 N)
|
||
|
|
1
|
||
|
|
(* N (fact (dec N))) ) )
|