Go tool commands

Report a typo

Match all of the go tool commands with their usage examples:

Match the items from left and right columns
go get
go mod tidy
go mod init
go list -m all
Used to download and install packages in our Go project;
Used to create a new Go module in our project;
Used to remove unused package dependencies in our go.mod file;
Outputs into the terminal all the dependencies of the current module;
___

Create a free account to access the full topic