Bez popisu

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

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.