blob: f4de29af4ca2b6139d7c0ce5a681eaa6f4882eb8 [file] [log] [blame]
Chris Broadfoot6fb4cc72017-01-26 12:49:49 -08001// 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 Shuralyovafa037b2018-10-25 13:29:35 -04007// Deprecated: Use https://godoc.org/golang.org/dl/go1.8rc3 instead.
Chris Broadfoot6fb4cc72017-01-26 12:49:49 -08008package main
9
10import "golang.org/x/build/version"
11
12func main() {
13 version.Run("go1.8rc3")
14}