Comment by zahlman
10 days ago
> Turns out you just write code that doesn’t need to GC. Object pools, off-heap memory etc.
Some GCd languages make this easier than others. Java and C# allow you to use primitive types. Even just doing some basic arithmetic in Python (at least CPython) is liable to create temporary objects; locals don't get stack-allocated.
[dead]