In the text Cloud native Go Ch. 2 Getting Started, go build ./... in this directory is meant to create a hello executable file. But running this command creates no results and go build main.go creates a main executable file that works as expected.
Is there a missing step?
In the text Cloud native Go Ch. 2 Getting Started,
go build ./...in this directory is meant to create ahelloexecutable file. But running this command creates no results andgo build main.gocreates amainexecutable file that works as expected.Is there a missing step?