Alexander Rakoczy | 9549474 | 2019-12-04 20:14:34 -0500 | [diff] [blame] | 1 | // Copyright 2019 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 | |
| 5 | // The go1.13.5 command runs the go command from Go 1.13.5. |
| 6 | // |
| 7 | // To install, run: |
| 8 | // |
cui fliter | 55c6442 | 2023-08-18 10:47:20 +0800 | [diff] [blame] | 9 | // $ go install golang.org/dl/go1.13.5@latest |
| 10 | // $ go1.13.5 download |
Alexander Rakoczy | 9549474 | 2019-12-04 20:14:34 -0500 | [diff] [blame] | 11 | // |
| 12 | // And then use the go1.13.5 command as if it were your normal go |
| 13 | // command. |
| 14 | // |
| 15 | // See the release notes at https://golang.org/doc/devel/release.html#go1.13.minor |
| 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.13.5") |
| 24 | } |