From 69e7e8a696825fa818b70587563ac68e52f8b1a1 Mon Sep 17 00:00:00 2001 From: Edward Muller Date: Tue, 30 Aug 2016 19:14:46 -0700 Subject: [PATCH] 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 --- doc/docs.html | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/doc/docs.html b/doc/docs.html index 7eb3a3ad263..1ccd1f3fe71 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