Categorygithub.com/pmuens/learn-go-with-tests
module
0.0.0-20240505095212-e830078b9e4c
Repository: https://github.com/pmuens/learn-go-with-tests.git
Documentation: pkg.go.dev

# README

Learn Go with Tests

Code written while following quii/learn-go-with-tests.

Setup

  1. git clone <url>
  2. go test <package-path>

Useful Commands

go run <package-path>

go build [<package-path>]

go test [<package-path>] [-v]
go test -bench=. [<package-path>] [-count <number>]
go test -cover [<package-path>]
go test -race [<package-path>]
go test -run FuncName/RunName

go fmt [<package-path>]

go vet [<package-path>]

go clean [<package-path>]

go help <command-name>

go mod init [<module-path>]
go mod tidy
go mod vendor
go mod download

# Adjust dependencies in `go.mod`.
go get <package-path>[@<version>]

# Build and install commands.
go install <package-path>[@<version>]

go list -m [all]

Useful Resources

# Packages

No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
Package should be called `select` but that's a reserved word.
No description provided by the author
No description provided by the author
No description provided by the author