Garbage collection now much better, not good

There's clearly still a lot of things getting incremented but not decremented.
This commit is contained in:
Simon Brooke 2018-12-29 09:35:29 +00:00
parent ad806de656
commit 7b126ea979
7 changed files with 39 additions and 6 deletions

View file

@ -2,3 +2,5 @@
(lambda (n)
(cond ((= n 1) 1)
(t (* n (fact (- n 1)))))))
(fact 20)