No Description

Andrew Gerrand 43d00b0942 go1.2.2 10 years ago
api 04e95a1a56 api: add go1.2.txt, use in tests 11 years ago
doc 2c19e64da0 [release-branch.go1.2] doc: document go1.2.2 10 years ago
include 7d734d9252 build: remove various uses of C undefined behavior 11 years ago
lib ce1a9fcbf5 [release-branch.go1.2] plan9: correct create permissions with union directory 11 years ago
misc a04e34923c [release-branch.go1.2] misc/vim: describe how to get gofmt-on-save behaviour. 10 years ago
src 1685fbd184 [release-branch.go1.2] runtime: fix crash in runtime.GoroutineProfile 10 years ago
test df3e05d37c [release-branch.go1.2] test/mapnan: use time.Now instead of syscall.Getrusage 11 years ago
.hgignore 74d2e096db build: ignore new zfiles, delete temp goplay binary in run.bash 11 years ago
.hgtags 402d3590b5 go1.2 10 years ago
AUTHORS 02c5ab4f87 [release-branch.go1.2] A+C: Richard Musiol (individual CLA) 11 years ago
CONTRIBUTORS 1ca6226dda [release-branch.go1.2] C: add Marko Mikulicic (Google CLA) 11 years ago
LICENSE c748689277 doc: update licensing text one more time 12 years ago
PATENTS 4468e5b376 LICENSE: separate, change PATENTS text 14 years ago
README e9dc28b0de [release-branch.go1.2] README: Fix installation instructions 10 years ago
VERSION 43d00b0942 go1.2.2 10 years ago
favicon.ico b13c7eec64 godoc: update favicon 12 years ago
robots.txt 06a923ada0 godoc: serve robots.txt raw 13 years ago

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.