Install go
https://go.dev/doc/install
Commands - go cli
- go build → compiles a bunch of go source code files
- go run → compiles an execute two or one files
- go fmt → format all the code in each file in the current directory
- go install → Compiles and install package
- go get → Download the raw source code of someone package
- go tests → Runs any tests associated with the current project
Packages types
Packages
https://pkg.go.dev/