GO's GC isn't bad. It does work amazingly however if you are working on projects where memory is crucial then GO's GC isn't going to help that much. Moreover, that gc will slow down the code / take a toll on the performance.
Whereas C, it's manual memory management. You have full control over the memory. Since I like both C and GO, I decided that I want to convert some of GO's packages to C since Go's packages are very useful.
(In C, there are no split, join or cut functions similar to GO)
Viewer23 OP t1_j9x32s6 wrote
Reply to comment by thebrazengeek in GoStrings - C String Library Similar to Golang's String Library by Viewer23
Damn. I did not see this before.
https://github.com/golang/go/issues/51317 (talks about introducing arenas)