Keine Beschreibung

Russ Cox ceb95ea6ae [release-branch.go1.4] all: fixes for modern compilers vor 1 Jahr
api 197bf4ddc3 [release-branch.go1.4] runtime, syscall: update openbsd for changes to syskill vor 7 Jahren
doc 5d9c28077d [release-branch.go1.4] doc: document go1.4.3 vor 9 Jahren
include ceb95ea6ae [release-branch.go1.4] all: fixes for modern compilers vor 1 Jahr
lib c009bcdd8b [release-branch.go1.4] codereview: add release-branch.go1.4 prefix, like for dev branches vor 9 Jahren
misc 031850b689 misc/makerelease: handle git sub-repositories vor 9 Jahren
src ceb95ea6ae [release-branch.go1.4] all: fixes for modern compilers vor 1 Jahr
test e938de22be [release-branch.go1.4] runtime: don't return a slice with nil ptr but non-zero len from growslice vor 9 Jahren
.gitattributes d9e0ca4055 [release-branch.go1.4] all: copy master .gitattributes and .gitignore vor 9 Jahren
.gitignore d9e0ca4055 [release-branch.go1.4] all: copy master .gitattributes and .gitignore vor 9 Jahren
.hgignore 0211771f2b .hgignore: delete some dregs vor 10 Jahren
.hgtags 9cd8cb0b17 tag go1.4beta1 vor 10 Jahren
AUTHORS 1a60ea1c01 A+C: add another email address for Emil Hessman vor 10 Jahren
CONTRIBUTORS f9d56543f1 C: add Nick Cooper (Google CLA). vor 10 Jahren
LICENSE c748689277 doc: update licensing text one more time vor 12 Jahren
PATENTS 4468e5b376 LICENSE: separate, change PATENTS text vor 14 Jahren
README 624f9da386 README: Fix installation instructions vor 11 Jahren
VERSION d6bb5454a7 [release-branch.go1.4] VERSION: go1.4-bootstrap-20170531 vor 7 Jahren
favicon.ico b13c7eec64 godoc: update favicon vor 12 Jahren
robots.txt 06a923ada0 godoc: serve robots.txt raw vor 13 Jahren

README

This is the source code repository for the Go programming language.

For documentation about how to install and use Go,
visit http://golang.org/ or load doc/install-source.html
in your web browser.

After installing Go, you can view a nicely formatted
doc/install-source.html by running godoc --http=:6060
and then visiting http://localhost:6060/doc/install/source.

Unless otherwise noted, the Go source files are distributed
under the BSD-style license found in the LICENSE file.

--

Binary Distribution Notes

If you have just untarred a binary Go distribution, you need to set
the environment variable $GOROOT to the full path of the go
directory (the one containing this README). You can omit the
variable if you unpack it into /usr/local/go, or if you rebuild
from sources by running all.bash (see doc/install.html).
You should also add the Go binary directory $GOROOT/bin
to your shell's path.

For example, if you extracted the tar file into $HOME/go, you might
put the following in your .profile:

export GOROOT=$HOME/go
export PATH=$PATH:$GOROOT/bin

See doc/install.html for more details.