>>106566906
Go originally had manual allocation/frees in the original versions but the took it out.
You could probably put it back in (or remove) stuff from the runtime package.
On windows, you can call out to, say, LocalAlloc() system call and use/free that as you desire.
Itβs pretty common in the C world to write code without using any CRT or runtime.