Sen descrición

Andrew Gerrand 1d6d8fca24 go1.1.2 %!s(int64=11) %!d(string=hai) anos
api 9e93d5014e api: add go1.1.txt; update cmd/api to use it %!s(int64=11) %!d(string=hai) anos
doc f1f37cce1d [release-branch.go1.1] doc: release notes for go1.1.2 %!s(int64=11) %!d(string=hai) anos
include ad95b7d23c include/plan9/libc.h: fix Plan 9 build %!s(int64=11) %!d(string=hai) anos
lib 05e8db985a lib/time: update to IANA 2013c %!s(int64=11) %!d(string=hai) anos
misc 3e917131a1 [release-branch.go1.1] cmd/cgo: gccgo fixes %!s(int64=11) %!d(string=hai) anos
src 018854d24a [release-branch.go1.1] bufio: check buffer availability before reading in ReadFrom %!s(int64=11) %!d(string=hai) anos
test 89020aa72c [release-branch.go1.1] cmd/gc: avoid passing unevaluated constant expressions to backends. %!s(int64=11) %!d(string=hai) anos
.hgignore 0359621241 build: update Makefile to track source code dependencies better %!s(int64=12) %!d(string=hai) anos
.hgtags fa6b1232e6 [release-branch.go1.1] remove release tag from release branch %!s(int64=11) %!d(string=hai) anos
AUTHORS 4d5affd045 A+C: Nicholas Presta (individual CLA) %!s(int64=11) %!d(string=hai) anos
CONTRIBUTORS b13eac88ac C: add Jeremiah Harmsen (Google CLA) %!s(int64=11) %!d(string=hai) anos
LICENSE c748689277 doc: update licensing text one more time %!s(int64=12) %!d(string=hai) anos
PATENTS 4468e5b376 LICENSE: separate, change PATENTS text %!s(int64=14) %!d(string=hai) anos
README 86920ad81d build: update, streamline documentation for new $GOBIN %!s(int64=14) %!d(string=hai) anos
VERSION 1d6d8fca24 go1.1.2 %!s(int64=11) %!d(string=hai) anos
favicon.ico b13c7eec64 godoc: update favicon %!s(int64=12) %!d(string=hai) anos
robots.txt 06a923ada0 godoc: serve robots.txt raw %!s(int64=13) %!d(string=hai) anos

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.