Go Tool: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Line 8: Line 8:
go build ./src/main/main.go
go build ./src/main/main.go
</syntaxhighlight>
</syntaxhighlight>
The command will create an executable named <code>main</code> and place it by default in the <code>${PROJECT_DIR}</code> directory.
The command will create an executable named after the first source file, in this case <code>main</code>, and place it by default in the <code>${PROJECT_DIR}</code> directory.
 
==<tt>doc</tt>==
==<tt>doc</tt>==
The <code>doc</code> command prints documentation for a package.
The <code>doc</code> command prints documentation for a package.

Revision as of 01:26, 15 August 2023

Internal

Commands

build

The build command compiles and builds an executable.

cd ${PROJECT_DIR}
go build ./src/main/main.go

The command will create an executable named after the first source file, in this case main, and place it by default in the ${PROJECT_DIR} directory.

doc

The doc command prints documentation for a package.

run

cd $PROJECT_DIR
go run ./src/main/main.go