[racket] Blog post about Racket
On 2014-05-12 21:59:07 -0400, Hendrik Boom wrote:
> The world needs a good, flexible, exact garbage collector that can be
> used by a variety of languages. Ideally, its interface to the rest of
> the world should admit of implementations that are just
> stop-and-collect, or stop-and-copy, or multicore for speed, or
> even concurrent with the mutator.
An interesting project along these lines is the Memory Pool System:
http://www.ravenbrook.com/project/mps
Their docs even have an example of integrating their collector into a
simple interpreter that implements a subset of Scheme:
http://www.ravenbrook.com/project/mps/master/manual/html/guide/lang.html
Cheers,
Asumu