A minimal guide to quickly start developing with the Go programming language.
Install Go on Linux using the package manager:
sudo apt update sudo apt install golang -y go version
go version
Create a file called main.go:
package main
import "fmt"
func main() {
fmt.Println("Hello, Go!")
}
go run main.go