RosettaCodeData/Task/Factorial/CLIPS/factorial.clips
Ingy döt Net db842d013d A-M baby
2013-04-10 21:29:02 -07:00

8 lines
228 B
Text

(deffunction factorial (?a)
(if (or (not (integerp ?a)) (< ?a 0)) then
(printout t "Factorial Error!" crlf)
else
(if (= ?a 0) then
1
else
(* ?a (factorial (- ?a 1))))))