commit | 2e68773dfca072cb81f219fc3b97ad34fe9d9f94 | [log] [tgz] |
---|---|---|
author | Russ Cox <rsc@golang.org> | Mon Apr 11 13:09:59 2022 -0400 |
committer | Gopher Robot <gobot@golang.org> | Tue Apr 12 21:36:50 2022 +0000 |
tree | 35a675f6649a27a449a8897c900bd18ef819950d | |
parent | ad95e7f791d8e1e7e7ec7f7cedfc2f6b29f6c9e2 [diff] |
all: gofmt Gofmt to update doc comments to the new formatting. For golang/go#51082. Change-Id: Ic98f647623f234cf5d36309c6204683e151820d7 Reviewed-on: https://go-review.googlesource.com/c/example/+/399596 Run-TryBot: Russ Cox <rsc@golang.org> TryBot-Result: Gopher Robot <gobot@golang.org> Auto-Submit: Russ Cox <rsc@golang.org> Reviewed-by: Ian Lance Taylor <iant@google.com>
This repository contains a collection of Go programs and libraries that demonstrate the language, standard libraries, and tools.
$ git clone https://go.googlesource.com/example $ cd example
https://go.googlesource.com/example is the canonical Git repository. It is mirrored at https://github.com/golang/example.
$ cd hello $ go build
A trivial “Hello, world” program that uses a stringutil package.
Command hello covers:
Library stringutil covers:
$ cd outyet $ go build
A web server that answers the question: “Is Go 1.x out yet?”
Topics covered:
A trivial “Hello, world” App Engine application intended to be used as the starting point for your own code. Please see Google App Engine SDK for Go and Quickstart for Go in the App Engine Standard Environment.
The go/types
package is a type-checker for Go programs. It is one of the most complex packages in Go's standard library, so we have provided this tutorial to help you find your bearings. It comes with several example programs that you can obtain using go get
and play with as you learn to build tools that analyze or manipulate Go programs.
A trivial web server that demonstrates the use of the template
package's block
feature.