You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
All objects created in the course of a Scheme computation, including procedures and continuations, have unlimited ex- tent. No Scheme object is ever destroyed. The reason that implementations of Scheme do not (usually!) run out of storage is that they are permitted to reclaim the storage occupied by an object if they can prove that the object cannot possibly matter to any future computation.
Following R7RS-small
The three possible situations mentioned in #54
Will now end up with the second one.
GC is now necessary for a practical interpreter and also necessary for a compiler, like in chez scheme.
The text was updated successfully, but these errors were encountered: