-- Leo's gemini proxy

-- Connecting to freeshell.de:1965...

-- Connected

-- Sending request

-- Meta line: 20 text/gemini;lang=en-GB

go build


> Compile Go sources.

More information.


Compile a 'package main' file (output will be the filename without extension):

go build {path/to/main.go}

Compile, specifying the output filename:

go build -o {path/to/binary} {path/to/source.go}

Compile a package:

go build -o {path/to/binary} {path/to/package}

Compile a main package into an executable, enabling data race detection:

go build -race -o {path/to/executable} {path/to/main/package}


> Copyright © 2014—present the tldr-pages team and contributors.

> This work is licensed under the Creative Commons Attribution 4.0 International License (CC-BY).

CC-BY



-- Response ended

-- Page fetched on Tue May 21 05:17:23 2024