1
0
mirror of https://github.com/golang/go synced 2024-10-05 05:01:22 -06:00
The Go programming language
Go to file
Russ Cox ea918ef535 Revert "cmd/compile: define func value symbols at declaration"
This reverts commit 3b411bf1a1bb08d6868083981cecba8088dc7aea.

Change-Id: I321a43fa378a43b3e4d7aa97e0222775640af64b
Reviewed-on: https://go-review.googlesource.com/12205
Reviewed-by: Russ Cox <rsc@golang.org>
2015-07-15 04:11:54 +00:00
api unicode: upgrade to 8.0.0 2015-06-26 18:01:29 +00:00
doc doc: add a few more details about arm and ppc64 to asm.html 2015-07-15 02:37:09 +00:00
lib/time
misc misc/cgo/testshared: unset GOBIN during test 2015-07-12 18:06:34 +00:00
src Revert "cmd/compile: define func value symbols at declaration" 2015-07-15 04:11:54 +00:00
test runtime: fix x86 stack trace for call to heap memory 2015-07-13 19:42:35 +00:00
.gitattributes
.gitignore
AUTHORS A+C: more updates before release 2015-07-15 01:38:53 +00:00
CONTRIBUTING.md
CONTRIBUTORS A+C: more updates before release 2015-07-15 01:38:53 +00:00
favicon.ico
LICENSE
PATENTS
README.md
robots.txt

The Go Programming Language

Go is an open source programming language that makes it easy to build simple, reliable, and efficient software.

Gopher image

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

Our canonical Git repository is located at https://go.googlesource.com/go. There is a mirror of the repository at https://github.com/golang/go.

Please report issues here: https://golang.org/issue/new

Go is the work of hundreds of contributors. We appreciate your help!

To contribute, please read the contribution guidelines: https://golang.org/doc/contribute.html

Please note that we do not use pull requests.

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 file). 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-source.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 https://golang.org/doc/install or doc/install.html for more details.