Example code, Codewars katas and a compiler for the Monkey programming language.
Ben Davis has a nice video walk through on how to install Go and set up the path variable
"Learn X in Y minutes" has a good introduction to Go
go run main.go
go mod init name-of-project
go build
./name-of-project
go build && ./name-of-project
The FreeCodeCamp YouTube channel has a beginners course to get you started.