зеркало из https://github.com/golang/build.git
15 строки
371 B
Go
15 строки
371 B
Go
// Copyright 2018 The Go Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
// The go1.9 command runs the go command from go1.9.
|
|
//
|
|
// Deprecated: Use https://godoc.org/golang.org/dl/go1.9 instead.
|
|
package main
|
|
|
|
import "golang.org/x/build/version"
|
|
|
|
func main() {
|
|
version.Run("go1.9")
|
|
}
|