暫無描述

Russ Cox a91c2e0d2d [dev.cc] cmd/internal/obj: set ctxt.Windows != 0 on windows 9 年之前
api 654297cb02 runtime: add GODEBUG=gccheckmark=0/1 9 年之前
doc 271a650245 [dev.cc] doc/go1.5: mention cmd/go meaning of std change 9 年之前
include 87de9ce212 [dev.cc] all: merge master (5f1efe7) into dev.cc 9 年之前
lib 439b329363 remove the obsolete lib/codereview. 9 年之前
misc 20f9f544bf [dev.cc] misc/nacl: add testdata for cmd/internal/rsc.io/x86/x86asm 9 年之前
src a91c2e0d2d [dev.cc] cmd/internal/obj: set ctxt.Windows != 0 on windows 9 年之前
test 5b94a47b7f [dev.cc] test: disable syntax error tests 9 年之前
.gitattributes b7a2b1e980 .gitattributes: prevent all magic line ending changes 9 年之前
.gitignore 4ca2fc4d8b [dev.cc] cmd/new5a etc, cmd/internal/asm: edit to produce working Go code 9 年之前
AUTHORS 1a60ea1c01 A+C: add another email address for Emil Hessman 10 年之前
CONTRIBUTING.md 778b649e38 doc: direct people to the mailing list 9 年之前
CONTRIBUTORS f9d56543f1 C: add Nick Cooper (Google CLA). 10 年之前
LICENSE c748689277 doc: update licensing text one more time 12 年之前
PATENTS 4468e5b376 LICENSE: separate, change PATENTS text 14 年之前
README.md ac452349e4 doc: fix broken link in README 9 年之前
favicon.ico b13c7eec64 godoc: update favicon 12 年之前
robots.txt 06a923ada0 godoc: serve robots.txt raw 13 年之前

README.md

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.