This repository has been archived on 2022-08-10. You can view files and clone it, but cannot push or open issues or pull requests.
chez-openbsd/examples/fact.ss
2022-07-29 15:12:07 +02:00

12 lines
289 B
Scheme

;;; simple factorial function
;;; it is interesting to change the 'lambda' into 'trace-lambda'
;;; or simply type (trace fact) before running fact to observe
;;; the nesting of recursive calls.
(define fact
(lambda (x)
(if (zero? x)
1
(* x (fact (1- x))))))