Chris Broadfoot | 6fb4cc7 | 2017-01-26 12:49:49 -0800 | [diff] [blame] | 1 | // Copyright 2016 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.8rc3 command runs the go command from go1.8rc3. |
| 6 | // |
Dmitri Shuralyov | afa037b | 2018-10-25 13:29:35 -0400 | [diff] [blame] | 7 | // Deprecated: Use https://godoc.org/golang.org/dl/go1.8rc3 instead. |
Chris Broadfoot | 6fb4cc7 | 2017-01-26 12:49:49 -0800 | [diff] [blame] | 8 | package main |
| 9 | |
| 10 | import "golang.org/x/build/version" |
| 11 | |
| 12 | func main() { |
| 13 | version.Run("go1.8rc3") |
| 14 | } |