2
1
Fork 0
pr3-ws202526/go/00-hello-world
Sebastian Steger 9693f5027b added go.mod in hello world 2025-10-27 08:36:17 +00:00
..
README.md hello world 2025-08-19 15:25:00 +00:00
go.mod added go.mod in hello world 2025-10-27 08:36:17 +00:00
hello-world.go hello world 2025-08-19 15:25:00 +00:00

README.md

Hello World

Run

go run hello-world.go

Build

go build hello-world.go

Formatting

go fmt hello-world.go

Linting

go vet hello-world.go

Examples

  1. fmt.Printf("hello world, %s\n")
  2. a := 7 (already caught by the compiler)