So that it passes provided the answer is right to within one part in a million. Also worked on a solution to returning exceptions from make_stack_frame
5 lines
89 B
Common Lisp
5 lines
89 B
Common Lisp
(set! fact
|
|
(lambda (n)
|
|
(cond ((= n 1) 1)
|
|
(t (* n (fact (- n 1)))))))
|