The OpenD Programming Language

garbage

Articles

Garbage Collection
module garbage.dd

D is a systems programming language with support for garbage collection. Usually it is not necessary to free memory explicitly. Just allocate as needed, and the garbage collector will periodically return all unused memory to the pool of available memory.