tags:

views:

115

answers:

2

does Boo have a garbage collector? what type?

+3  A: 
  1. Yes, as provided by the CLR.
  2. Depends on the implementation of the runtime.
KennyTM
Actually, the boehm gc already uses a generational algorithm, see [here](http://www.hpl.hp.com/personal/Hans_Boehm/gc/#details) and [here](http://en.wikipedia.org/wiki/Boehm_garbage_collector#Method_of_Operation).
tonio
+1  A: 

Since it's a .NET/CLR language, it relies on the garbage collector provided by that infrastructure. Although the garbage collector is an implementation detail to the infrastructure.

The two main CLR implementations are the Microsoft .NET Framework and the mono project. If you're interested, you can read about the implementation of the MS.NET GC or the Mono GC.

BleuM937