Jump to content

Go: Difference between revisions

From Smithnet Wiki
No edit summary
 
(2 intermediate revisions by the same user not shown)
Line 4: Line 4:
  go build test.go
  go build test.go
   
   
If there are multiple files in the main package, must make go access all of them:
go run .
go build .
To remove debug symbols:
go build -ldflags="-s -w" .
In multi-file projects, main.go is the convention. The binary name is taken from the project directory.
  gofmt -w .
  gofmt -w .
  gofmt -d test.go
  gofmt -d test.go
=== Useful Packages ===


Initialise project, create go.mod file:
Initialise project, create go.mod file:
Line 19: Line 26:


Note the go.sum file that contains anti-tampering checksums.
Note the go.sum file that contains anti-tampering checksums.
=== Useful Packages ===


* [https://github.com/alexflint/go-arg alexflint/go-arg]
* [https://github.com/alexflint/go-arg alexflint/go-arg]
* ?
* ?

Latest revision as of 07:18, 24 January 2026

Building and Packages

go run test.go
go build test.go

If there are multiple files in the main package, must make go access all of them:

go run .
go build .

To remove debug symbols:

go build -ldflags="-s -w" .

In multi-file projects, main.go is the convention. The binary name is taken from the project directory.

gofmt -w .
gofmt -d test.go

Initialise project, create go.mod file:

go mod init example-project

Download, and add reference to go.mod file:

go get github.com/alexflint/go-arg

Ensure go.mod is in sync with code imports:

go mod tidy

Note the go.sum file that contains anti-tampering checksums.

Useful Packages