1
0
Fork 0
This repository has been archived on 2026-08-16. You can view files and clone it, but cannot push or open issues/pull-requests.
pr3-sose2026-fork/go/00-hello-world/README.md

18 lines
253 B
Markdown

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