Hacker News new | ask | show | jobs
by alberth 228 days ago
Since Nim GC approach seems to be a common topic of discussion, providing link below on more details:

https://nim-lang.org/docs/mm.html

1 comments

It's also not a huge issue in most cases because the default is stack-managed pointers passed around by value. So effectively automatic invisible unique pointers. You can construct whole programs without ever touching the `ref` keyword. I've done this in a live commercial deployment.