> Now, Nim is getting ARC, the "one GC to rule them all". So none is dying now? > But I am working on embedded systems. This is not a good signal to me.
"Embedded systems" is a vast field and most systems have memory for a heap and you _always_ have a heap. Proof: You can use `static char myHeap[100];` in C as the storage for the heap.
