This repository has been archived on 2026-08-16. You can view files and clone it, but cannot push or open issues/pull-requests.
|
# 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)
|