2014-12-09 22:06:47 -07:00
|
|
|
# The Go Programming Language
|
|
|
|
|
2014-12-10 15:44:54 -07:00
|
|
|
Go is an open source programming language that makes it easy to build simple,
|
|
|
|
reliable, and efficient software.
|
|
|
|
|
2021-02-16 11:16:06 -07:00
|
|
|
![Gopher image](https://golang.org/doc/gopher/fiveyears.jpg)
|
2022-08-16 13:52:07 -06:00
|
|
|
*Gopher image by [Renee French][rf], licensed under [Creative Commons 4.0 Attributions license][cc4-by].*
|
2009-11-08 10:57:37 -07:00
|
|
|
|
2014-12-09 22:06:47 -07:00
|
|
|
Our canonical Git repository is located at https://go.googlesource.com/go.
|
2015-02-18 19:34:44 -07:00
|
|
|
There is a mirror of the repository at https://github.com/golang/go.
|
2014-12-09 22:06:47 -07:00
|
|
|
|
2017-01-16 04:25:33 -07:00
|
|
|
Unless otherwise noted, the Go source files are distributed under the
|
|
|
|
BSD-style license found in the LICENSE file.
|
2014-12-09 22:06:47 -07:00
|
|
|
|
2017-01-16 04:25:33 -07:00
|
|
|
### Download and Install
|
2009-11-08 10:57:37 -07:00
|
|
|
|
2017-01-16 04:25:33 -07:00
|
|
|
#### Binary Distributions
|
2015-01-08 11:35:44 -07:00
|
|
|
|
2022-02-01 16:22:31 -07:00
|
|
|
Official binary distributions are available at https://go.dev/dl/.
|
2010-07-29 22:00:59 -06:00
|
|
|
|
2022-02-01 16:22:31 -07:00
|
|
|
After downloading a binary release, visit https://go.dev/doc/install
|
2021-02-12 14:02:12 -07:00
|
|
|
for installation instructions.
|
2010-07-29 22:00:59 -06:00
|
|
|
|
2017-01-16 04:25:33 -07:00
|
|
|
#### Install From Source
|
2010-07-29 22:00:59 -06:00
|
|
|
|
2017-01-16 04:25:33 -07:00
|
|
|
If a binary distribution is not available for your combination of
|
|
|
|
operating system and architecture, visit
|
2022-02-01 16:22:31 -07:00
|
|
|
https://go.dev/doc/install/source
|
2021-02-12 14:02:12 -07:00
|
|
|
for source installation instructions.
|
2010-07-29 22:00:59 -06:00
|
|
|
|
2017-01-16 04:25:33 -07:00
|
|
|
### Contributing
|
2010-07-29 22:00:59 -06:00
|
|
|
|
2018-04-03 11:08:45 -06:00
|
|
|
Go is the work of thousands of contributors. We appreciate your help!
|
2017-01-16 04:25:33 -07:00
|
|
|
|
2022-02-01 16:22:31 -07:00
|
|
|
To contribute, please read the contribution guidelines at https://go.dev/doc/contribute.
|
2014-12-09 22:06:47 -07:00
|
|
|
|
2018-02-12 13:13:33 -07:00
|
|
|
Note that the Go project uses the issue tracker for bug reports and
|
2022-04-26 07:26:50 -06:00
|
|
|
proposals only. See https://go.dev/wiki/Questions for a list of
|
2018-02-12 13:13:33 -07:00
|
|
|
places to ask questions about the Go language.
|
2017-02-02 17:43:24 -07:00
|
|
|
|
|
|
|
[rf]: https://reneefrench.blogspot.com/
|
2022-08-16 13:52:07 -06:00
|
|
|
[cc4-by]: https://creativecommons.org/licenses/by/4.0/
|