Skip to content

Commit 11d4f0f

Browse files
committed
dl: add go1.20.11
Change-Id: I5734858cc00cf94d5e5be6fc8944f9cedc1f1b12 Reviewed-on: https://go-review.googlesource.com/c/dl/+/540515 Reviewed-by: Cherry Mui <[email protected]> Auto-Submit: Gopher Robot <[email protected]> TryBot-Result: Gopher Robot <[email protected]> Reviewed-by: Heschi Kreinick <[email protected]> Run-TryBot: Heschi Kreinick <[email protected]>
1 parent b8ab228 commit 11d4f0f

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

go1.20.11/main.go

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
// Copyright 2023 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.20.11 command runs the go command from Go 1.20.11.
6+
//
7+
// To install, run:
8+
//
9+
// $ go install golang.org/dl/go1.20.11@latest
10+
// $ go1.20.11 download
11+
//
12+
// And then use the go1.20.11 command as if it were your normal go
13+
// command.
14+
//
15+
// See the release notes at https://go.dev/doc/devel/release#go1.20.11.
16+
//
17+
// File bugs at https://go.dev/issue/new.
18+
package main
19+
20+
import "golang.org/dl/internal/version"
21+
22+
func main() {
23+
version.Run("go1.20.11")
24+
}

0 commit comments

Comments
 (0)