Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | - | - | ||||
api/ | 25-Apr-2025 | - | 156,880 | 156,809 | ||
bin/ | 25-Apr-2025 | - | ||||
doc/ | 25-Apr-2025 | - | 18,234 | 15,218 | ||
lib/time/ | 25-Apr-2025 | - | 193 | 129 | ||
misc/ | 25-Apr-2025 | - | 2,776 | 2,029 | ||
pkg/ | 25-Apr-2025 | - | 181 | 68 | ||
src/ | 25-Apr-2025 | - | 2,773,111 | 2,176,482 | ||
test/ | 25-Apr-2025 | - | 175,413 | 122,481 | ||
CONTRIBUTING.md | D | 25-Apr-2025 | 1.3 KiB | 36 | 22 | |
LICENSE | D | 25-Apr-2025 | 1.4 KiB | 28 | 24 | |
METADATA | D | 25-Apr-2025 | 295 | 17 | 15 | |
PATENTS | D | 25-Apr-2025 | 1.3 KiB | 23 | 20 | |
README.md | D | 25-Apr-2025 | 1.4 KiB | 43 | 27 | |
SECURITY.md | D | 25-Apr-2025 | 426 | 14 | 8 | |
VERSION | D | 25-Apr-2025 | 35 | 3 | 2 | |
codereview.cfg | D | 25-Apr-2025 | 52 | 3 | 2 | |
go.env | D | 25-Apr-2025 | 505 | 13 | 10 | |
update-prebuilts.sh | D | 25-Apr-2025 | 2.4 KiB | 90 | 48 |
README.md
1# The Go Programming Language 2 3Go is an open source programming language that makes it easy to build simple, 4reliable, and efficient software. 5 6 7*Gopher image by [Renee French][rf], licensed under [Creative Commons 4.0 Attribution license][cc4-by].* 8 9Our canonical Git repository is located at https://go.googlesource.com/go. 10There is a mirror of the repository at https://github.com/golang/go. 11 12Unless otherwise noted, the Go source files are distributed under the 13BSD-style license found in the LICENSE file. 14 15### Download and Install 16 17#### Binary Distributions 18 19Official binary distributions are available at https://go.dev/dl/. 20 21After downloading a binary release, visit https://go.dev/doc/install 22for installation instructions. 23 24#### Install From Source 25 26If a binary distribution is not available for your combination of 27operating system and architecture, visit 28https://go.dev/doc/install/source 29for source installation instructions. 30 31### Contributing 32 33Go is the work of thousands of contributors. We appreciate your help! 34 35To contribute, please read the contribution guidelines at https://go.dev/doc/contribute. 36 37Note that the Go project uses the issue tracker for bug reports and 38proposals only. See https://go.dev/wiki/Questions for a list of 39places to ask questions about the Go language. 40 41[rf]: https://reneefrench.blogspot.com/ 42[cc4-by]: https://creativecommons.org/licenses/by/4.0/ 43