No Description

Andrew Gerrand 1d6d8fca24 go1.1.2 11 years ago
api 9e93d5014e api: add go1.1.txt; update cmd/api to use it 11 years ago
doc f1f37cce1d [release-branch.go1.1] doc: release notes for go1.1.2 11 years ago
include ad95b7d23c include/plan9/libc.h: fix Plan 9 build 11 years ago
lib 05e8db985a lib/time: update to IANA 2013c 11 years ago
misc 3e917131a1 [release-branch.go1.1] cmd/cgo: gccgo fixes 11 years ago
src 018854d24a [release-branch.go1.1] bufio: check buffer availability before reading in ReadFrom 11 years ago
test 89020aa72c [release-branch.go1.1] cmd/gc: avoid passing unevaluated constant expressions to backends. 11 years ago
.hgignore 0359621241 build: update Makefile to track source code dependencies better 12 years ago
.hgtags fa6b1232e6 [release-branch.go1.1] remove release tag from release branch 11 years ago
AUTHORS 4d5affd045 A+C: Nicholas Presta (individual CLA) 11 years ago
CONTRIBUTORS b13eac88ac C: add Jeremiah Harmsen (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 86920ad81d build: update, streamline documentation for new $GOBIN 14 years ago
VERSION 1d6d8fca24 go1.1.2 11 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.html in your web browser.

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

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.