|
|
|
|
|
by foldr
1125 days ago
|
|
I see what you mean about this particular project, but more generally, you can certainly use pre-modules Go code with current Go compilers. See e.g. https://github.com/golang/go/issues/37797 (a case of someone not RTFMing, but the response illustrates how it's done). If you just want to pretend modules never happened, then export GO111MODULE=off and use the latest Go compiler. |
|
In general, golang seems to work best with golang-only projects. As soon as there are other languages in the mix, like C++ here, things get very ugly very fast.