Arc Forum
new
|
comments
|
leaders
|
submit
login
3 points
by
stefano
6048 days ago |
link
|
parent
If you alloc memory with cmalloc mzscheme will automatically delete it for you. Try
(def infinite () (cmalloc 4) (infinite)) (infinite)
You shouldn't run out of memory. If you do, then I'm wrong.