Work on reducing allocation leaks in read_number(). This is now improved, but not yet satisfactory.

This commit is contained in:
Simon Brooke 2026-02-04 22:57:10 +00:00
parent e489d02069
commit 351ca5bd17
9 changed files with 275 additions and 17 deletions

View file

@ -4,4 +4,6 @@
(cond ((= n 1) 1)
(t (* n (fact (- n 1)))))))
(fact 1000)
; (fact 1000)

View file

@ -1 +1 @@
(slurp (set! f (open "http://www.journeyman.cc/")))
(slurp (open "http://www.journeyman.cc/"))