go env -w GO111MODULE=on go env | grep MOD
go mod init test
go.mod has been created
go.mod
module test go 1.13
Packages that are not automatically go get are imported
go run main.go
Recommended Posts