If you are new to Go, here is the basic process for setting up a new project and building/running it. This assumes that you have already installed Go as described in the previous blog post.
First, create a working directory for the project, and change into it:
mkdir ~/myproject
cd ~/myproject
Then, use your favorite text editor or IDE to create a Go program, with any name that ends in .go, for example main.go: