go: add named executable example (#1506)

coverage
Max Strübing 2017-09-28 11:20:26 +02:00 committed by Starbeamrainbowlabs
parent 968aa0bff4
commit 0639876c42
1 changed files with 4 additions and 0 deletions

View File

@ -10,6 +10,10 @@
`go run {{file}}.go`
- Compile a source file into a named executable:
`go build -o {{executable}} {{file}}.go`
- Compile the package present in the current directory:
`go build`