> I was able to read on the web efficient garbage collector offers you, it's 
> fine but is it possible to use it without... in the manner of Rust for 
> example ?

Nim has option `--gc:none` if you need to manage memory manually.

[writetracking](https://nim-lang.org/araq/writetracking.html) and 
[destructor](https://nim-lang.org/araq/destructors.html) is good reading on how 
Nim trying tackle memory management safety.

This [thread](https://forum.nim-lang.org/t/3625) is an example of achieving 
compatibility between C++ and Nim which needed in real-time processing

Reply via email to