Seem to have fixed the 'oblist getting lost' problem.

This commit is contained in:
Simon Brooke 2018-12-31 14:43:47 +00:00
parent e7dffcad2c
commit 72ab4af20e
2 changed files with 6 additions and 2 deletions

View file

@ -1,5 +1,6 @@
(set! fact
(lambda (n)
"Compute the factorial of `n`, expected to be an integer."
(cond ((= n 1) 1)
(t (* n (fact (- n 1)))))))