Go comes with a powerful toolchain. You've seen go run, go build, go fmt, and go mod. Here are a few more:
- go test runs tests
- go vet checks for common mistakes
- go get downloads dependencies
- go doc shows documentation
All these tools work together. No separate installations needed. This consistency is one reason Go projects are easy to work with.