Golang gc

From wikinotes
Revision as of 01:03, 19 June 2022 by Will (talk | contribs) (→‎run)

This page documents the builtin golang compilation tools.

run

go run will build and run an executable.

go run .                  # compile package at cwd, and run it's 'main()' method
go run . --help           # cli params for the program can be passed to go run

go run main.go lib.go ... # compile only these files, and run detected 'main()' method
go run some/package       # compile a specific package

build

clean

install