Hi, Does Nim have some good ways to handle shared memory? The only way I found
was manual memory management, but that can't handle inner references and,
hello, that's the reason I'm using a garbage collected language in the first
place :D The experimental manual says that the parallel statement supports
shared memory, but I couldn't figure it how. If Nim doesn't have this now, are
there future plans that will improve this situation? Will there be a garbage
collection algorithm that allocates all ref T on a shared heep, supports
passing them between threads, and frees the memory when possible?