blob: 0966ea0655065d9243e5aa74a0ae89dd83ebb3cd [file] [log] [blame]
Alexander Rakoczy7744cb12021-01-28 10:17:28 -05001// Copyright 2021 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.16rc1 command runs the go command from Go 1.16rc1.
6//
7// To install, run:
8//
cui fliter55c64422023-08-18 10:47:20 +08009// $ go install golang.org/dl/go1.16rc1@latest
10// $ go1.16rc1 download
Alexander Rakoczy7744cb12021-01-28 10:17:28 -050011//
12// And then use the go1.16rc1 command as if it were your normal go
13// command.
14//
15// See the release notes at https://tip.golang.org/doc/go1.16
16//
17// File bugs at https://golang.org/issues/new
18package main
19
20import "golang.org/dl/internal/version"
21
22func main() {
23 version.Run("go1.16rc1")
24}