From: Edward Muller Date: Wed, 31 Aug 2016 02:14:46 +0000 (-0700) Subject: doc: update go tour installation instructions X-Git-Tag: go1.8beta1~1539 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=69e7e8a696825fa818b70587563ac68e52f8b1a1;p=gostls13.git doc: update go tour installation instructions Fixes #16933 Change-Id: I2054abd28bc555b018309934774fc4ecc44826b3 Reviewed-on: https://go-review.googlesource.com/28217 Reviewed-by: Emmanuel Odeke Reviewed-by: Brad Fitzpatrick --- diff --git a/doc/docs.html b/doc/docs.html index 7eb3a3ad26..1ccd1f3fe7 100644 --- a/doc/docs.html +++ b/doc/docs.html @@ -40,7 +40,13 @@ The first section covers basic syntax and data structures; the second discusses methods and interfaces; and the third introduces Go's concurrency primitives. Each section concludes with a few exercises so you can practice what you've learned. You can take the tour online or -install it locally. +install it locally with: +

+

+

+$ go get golang.org/x/tour/gotour
+
+This will place the gotour binary in your workspace's bin directory.

How to write Go code