Brad Fitzpatrick | 44f93b8 | 2018-07-12 20:38:19 +0000 | [diff] [blame] | 1 | // Copyright 2018 The Go Authors. All rights reserved. |
| 2 | // Use of this source code is governed by a BSD-style |
| 3 | // license that can be found in the LICENSE file. |
| 4 | |
Brad Fitzpatrick | 1bf763e | 2018-08-23 04:59:20 +0000 | [diff] [blame] | 5 | // The go1.9.3 command runs the go command from Go 1.9.3. |
Brad Fitzpatrick | 44f93b8 | 2018-07-12 20:38:19 +0000 | [diff] [blame] | 6 | // |
| 7 | // To install, run: |
| 8 | // |
Dmitri Shuralyov | 294a5db | 2021-08-30 15:33:58 -0400 | [diff] [blame] | 9 | // $ go install golang.org/dl/go1.9.3@latest |
Brad Fitzpatrick | 44f93b8 | 2018-07-12 20:38:19 +0000 | [diff] [blame] | 10 | // $ go1.9.3 download |
| 11 | // |
| 12 | // And then use the go1.9.3 command as if it were your normal go |
| 13 | // command. |
| 14 | // |
Agniva De Sarker | af982ab | 2019-02-04 11:05:06 +0530 | [diff] [blame] | 15 | // See the release notes at https://golang.org/doc/devel/release.html#go1.9.minor |
Brad Fitzpatrick | 44f93b8 | 2018-07-12 20:38:19 +0000 | [diff] [blame] | 16 | // |
| 17 | // File bugs at https://golang.org/issues/new |
| 18 | package main |
| 19 | |
| 20 | import "golang.org/dl/internal/version" |
| 21 | |
| 22 | func main() { |
| 23 | version.Run("go1.9.3") |
| 24 | } |