Running Go programs with a specific version
Brief Although Go releases are incremental and follow the Go compatibility promise: unless the change is required for a bug or security fix, the version starting with 1 won’t experience any backward-breaking change to the language or standard library, you can have a reason to use an old version of the language. Is there a clean way to do this? Recommendation I recommend a tool like go version manager that helps to manage a systemwide version of the language....