Contrarily to all versions of OrchIDS <=1.1, OrchIDS 2.0 has garbage-collected memory.
This means that you still allocate memory, but do not deallocate it explicitly. This imposes a certain number of constraints on the way you program.
- See the garbage collection post for a description of the internals of the garbage collector.
- See the writing functions that allocate memory post for an introduction to the delicate art of writing functions that allocate memory in the presence of the garbage collector.