Hello, Project Reclass
How to create your first hello world program in Go!
Why Go?
Installation
rm -rf /usr/local/go && tar -C /usr/local -xzf go1.16.5.linux-amd64.tar.gz
# Remove any previous versions of go and unzip the new version
export PATH=$PATH:/usr/local/go/bin
# Add Go to your $PATH
go version
# You should be able to run this from anyway and get the most recent versionWriting the Code
More Resources
Last updated
Was this helpful?