Skip to content

zhangjiongai-debug/hello-go

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

hello-go

Minimal Go project that prints "Hello, World!" with a unit test.

Run

go run .

# or build to bin/
mkdir -p bin && go build -o bin/hello-go .
./bin/hello-go

Test

go test ./...

Structure

  • 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)

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages