>>106504586 (OP)
Go definitely has some useful features, Iβm using it for one of itβs biggest MIS-features, however.
1. Inability to link, dynamic or otherwise, making binaries massive, duplicative, and immodular (in the literal sense). This is great on old systems that have old crypto.
I was again annoyed by the go working use-case that all project code is in one small package main file that you compile and run.
One .go file.
The pre-module workaround is hilarious (install) and the module system is even worse.
Do I have to copy every package into that one file and get rid of the package.references and choose unique names.