Earlier quoted context omitted.
Isn’t garbage collection going to introduce jitter?
Not necessarily, there are several OSes written in GC enabled systems programming languages. Just because a language has a GC it doesn't mean it is the only means to allocate memory. Go also allows for global statics, stack and plain old C style manual allocations. It is a matter to learn how to use them. And make use of profilers as well. For example, on performance critical paths always use a standard for loop, nev…
i am curious, why would one use a normal for loop, instead of a range one?