_content/doc/tutorial: the latest Go in the prerequisites Change-Id: I39f9fece8c6878a4403f17edbffd60319dcc2d51 Reviewed-on: https://go-review.googlesource.com/c/website/+/782980 Reviewed-by: Sean Liao <sean@liao.dev> Reviewed-by: Michael Pratt <mpratt@google.com> Reviewed-by: Olivier Mengué <olivier.mengue@gmail.com> LUCI-TryBot-Result: golang-scoped@luci-project-accounts.iam.gserviceaccount.com <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Russ Cox <rsc@golang.org> Auto-Submit: Sean Liao <sean@liao.dev>
diff --git a/_content/doc/tutorial/create-module.html b/_content/doc/tutorial/create-module.html index 094f254..16a6472 100644 --- a/_content/doc/tutorial/create-module.html +++ b/_content/doc/tutorial/create-module.html
@@ -68,6 +68,10 @@ simple, but it helps to know something about functions, loops, and arrays. </li> <li> + <strong>Go.</strong> We recommend using the latest version of Go to follow this tutorial. + For installation instructions, see <a href="/doc/install">Installing Go</a>. + </li> + <li> <strong>A tool to edit your code.</strong> Any text editor you have will work fine. Most text editors have good support for Go. The most popular are VSCode (free), GoLand (paid), and Vim (free).
diff --git a/_content/doc/tutorial/fuzz.md b/_content/doc/tutorial/fuzz.md index c187c2f..3f370f9 100644 --- a/_content/doc/tutorial/fuzz.md +++ b/_content/doc/tutorial/fuzz.md
@@ -33,8 +33,8 @@ ## Prerequisites -- **An installation of Go 1.18 or later.** For installation instructions, see - [Installing Go](/doc/install). +- **Go.** We recommend using the latest version of Go to follow this tutorial. + For installation instructions, see [Installing Go](/doc/install). - **A tool to edit your code.** Any text editor you have will work fine. - **A command terminal.** Go works well using any terminal on Linux and Mac, and on PowerShell or cmd in Windows.
diff --git a/_content/doc/tutorial/govulncheck.md b/_content/doc/tutorial/govulncheck.md index 0c276a3..c467ead 100644 --- a/_content/doc/tutorial/govulncheck.md +++ b/_content/doc/tutorial/govulncheck.md
@@ -22,7 +22,7 @@ ## Prerequisites - **Go.** We recommend using the latest version of Go to follow this tutorial. - (For installation instructions, see [Installing Go](/doc/install).) + For installation instructions, see [Installing Go](/doc/install). - **A code editor.** Any editor you have will work fine. - **A command terminal.** Go works well using any terminal on Linux and Mac, and on PowerShell or cmd in Windows.
diff --git a/_content/doc/tutorial/web-service-gin.md b/_content/doc/tutorial/web-service-gin.md index 0f2aba4..a94a02a 100644 --- a/_content/doc/tutorial/web-service-gin.md +++ b/_content/doc/tutorial/web-service-gin.md
@@ -37,8 +37,8 @@ ## Prerequisites -* **An installation of Go 1.16 or later.** For installation instructions, see - [Installing Go](/doc/install). +* **Go.** We recommend using the latest version of Go to follow this tutorial. + For installation instructions, see [Installing Go](/doc/install). * **A tool to edit your code.** Any text editor you have will work fine. * **A command terminal.** Go works well using any terminal on Linux and Mac, and on PowerShell or cmd in Windows.
diff --git a/_content/doc/tutorial/workspaces.md b/_content/doc/tutorial/workspaces.md index 14448ad..b7f7cf3 100644 --- a/_content/doc/tutorial/workspaces.md +++ b/_content/doc/tutorial/workspaces.md
@@ -18,14 +18,12 @@ ## Prerequisites -* **An installation of Go 1.18 or later.** +* **Go.** We recommend using the latest version of Go to follow this tutorial. + For installation instructions, see [Installing Go](/doc/install). * **A tool to edit your code.** Any text editor you have will work fine. * **A command terminal.** Go works well using any terminal on Linux and Mac, and on PowerShell or cmd in Windows. -This tutorial requires go1.18 or later. Make sure you've installed Go at Go 1.18 or later using the -links at [go.dev/dl](/dl). - ## Create a module for your code {#create_folder} To begin, create a module for the code you’ll write.