`go run` compiles your code temporarily and runs it immediately, without producing a permanent binary.
go run .
go run main.go
go run . --port=8080
`go run` is great for local dev. For real deployment, use `go build` to produce a stable binary.