blob: 3efd63b42b9c200f7357673149e6e0e99c23bfc4 [file] [log] [blame]
Gopher Robotbd728272022-12-07 21:37:42 +00001// Copyright 2022 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.20rc1 command runs the go command from Go 1.20rc1.
6//
7// To install, run:
8//
9// $ go install golang.org/dl/go1.20rc1@latest
10// $ go1.20rc1 download
11//
12// And then use the go1.20rc1 command as if it were your normal go
13// command.
14//
15// See the release notes at https://tip.golang.org/doc/go1.20.
16//
17// File bugs at https://go.dev/issue/new.
18package main
19
20import "golang.org/dl/internal/version"
21
22func main() {
23 version.Run("go1.20rc1")
24}