doc: add gotypes to readme Copied from golang/example#2. Change-Id: Idbf4100ab115be2a6ca03b180c5ceb9978de6e3c Reviewed-on: https://go-review.googlesource.com/24159 Reviewed-by: Alan Donovan <adonovan@google.com>
diff --git a/README.md b/README.md index 1d34d95..28c5e94 100644 --- a/README.md +++ b/README.md
@@ -51,6 +51,14 @@ _Note_: The `goapp` tool is part of the [Google App Engine SDK for Go](https://cloud.google.com/appengine/downloads#Google_App_Engine_SDK_for_Go). +### [gotypes](gotypes/) ([godoc](//godoc.org/github.com/golang/example/gotypes)) + +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. + ### [template](template/) ([godoc](//godoc.org/github.com/golang/example/template)) A trivial web server that demonstrates the use of the