Arc Forumnew | comments | leaders | submitlogin
3 points by stefano 5994 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.