We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 46b9db7 commit 9b1b5cdCopy full SHA for 9b1b5cd
version/go1.11beta1/main.go
@@ -0,0 +1,24 @@
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
+
5
+// The go1.11beta1 command runs the go command from go1.11beta1.
6
+//
7
+// To install, run:
8
9
+// $ go get golang.org/x/build/version/go1.11beta1
10
+// $ go1.11beta1 download
11
12
+// And then use the go1.11beta1 command as if it were your normal go
13
+// command.
14
15
+// See the release notes at https://golang.org/doc/go1.11beta1
16
17
+// File bugs at https://golang.org/issues/new
18
+package main
19
20
+import "golang.org/x/build/version"
21
22
+func main() {
23
+ version.Run("go1.11beta1")
24
+}
0 commit comments