The Go Programming Language v1.15
This is build for systems Windows/Linux x64.
Download
http://yutoks.ru/downloads/go1.15.src.patched.tar.gz.
Extracted the tar file into c:\go, you might for example use command line
put the following on Windows:
set GOROOT=C:\go
set PATH=%GOROOT%\bin;%PATH%
Let's check it out:
godoc --http=127.0.0.1:8000
Extracted the tar file into /opt/go, you might for example use command line
put the following on Linux:
export GOROOT=/opt/go
export PATH=$PATH:$GOROOT/bin
Let's check it out:
godoc -http=127.0.0.1:8000
Go is an open source programming language that makes it easy to build simple,
reliable, and efficient software. Good luck!