Minimal Go project that prints "Hello, World!" with a unit test.
go run .
# or build to bin/
mkdir -p bin && go build -o bin/hello-go .
./bin/hello-gogo test ./...- main.go: entry point and Hello() implementation
- main_test.go: minimal unit test
- .gitignore: ignore bin/ and build artifacts
- go.mod: module definition (hello-go)