Go: Difference between revisions

From wikinotes
No edit summary
No edit summary
Line 1: Line 1:
A minimalist statically linked, strongly typed, compiled language with garbage collection.<br>
A minimalist statically linked, strongly typed, compiled language with garbage collection.<br>
Simple support for cross compilation.
Simple support for cross compilation.
<syntaxhighlight lang="bash">
go install example.com/x/foo@latest  # install executable to OS
go run hello.go                      # build/run go src
</syntaxhighlight>


= Documentation =
= Documentation =
Line 20: Line 25:
|}
|}
</blockquote><!-- Documentation -->
</blockquote><!-- Documentation -->
= Examples =
<blockquote>
<syntaxhighlight lang="go">
go install example.com/x/foo@latest  # install executable to OS
go run hello.go                      # build/run go src
</syntaxhighlight>
</blockquote><!-- Examples -->


= Intro/Reference =
= Intro/Reference =

Revision as of 14:05, 19 June 2022