Nim without GCWhat do ParaSail, "modern" C++ and Rust have in common? They focus on "pointer free programming" (ok, maybe Rust doesn't, but it uses similar mechanisms). In this blog post I am exploring how we can move Nim into this direction. My goals are: Memory safety without GC. Make passing data between threads more efficient. Make it more natural to write code with excellent performance. A si