mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-06-05 15:05:59 +02:00
go-run: add package example and fix link (#6827)
This commit is contained in:
parent
a0fea7e1cb
commit
92558e2eb0
1 changed files with 6 additions and 3 deletions
|
@ -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}}`
|
||||
|
|
Loading…
Add table
Reference in a new issue