go-run: add package example and fix link (#6827)

beep
Joshua Shanks 2021-10-12 02:25:38 -07:00 committed by GitHub
parent a0fea7e1cb
commit 92558e2eb0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 3 deletions

View File

@ -1,9 +1,12 @@
# go run
> Compile and run Go code.
> Does not leave a binary on the disk.
> More information: <https://pkg.go.dev/cmd/go#hdr-Compile_packages_and_dependencies>.
> Compile and run Go code without saving a binary.
> More information: <https://pkg.go.dev/cmd/go#hdr-Compile_and_run_Go_program>.
- Run a Go file:
`go run {{path/to/file.go}}`
- Run a main Go package:
`go run {{path/to/package}}`