4 lines
79 B
Text
4 lines
79 B
Text
(function factorial x
|
|
(if (< x 2)
|
|
1
|
|
(*1 x (factorial (dec x)))))
|