diff options
author | Russ Cox <rsc@golang.org> | 2020-03-09 22:11:04 -0400 |
---|---|---|
committer | Russ Cox <rsc@golang.org> | 2020-03-11 14:10:08 +0000 |
commit | 482079d678d84e207dd9ae63266c4bd4e653886b (patch) | |
tree | 62aa3b630bbe982904f5495fe2cc53d60a87c92d /content/learn-go-from-your-browser.article | |
parent | 0b4fcd39865e575704b5928c9a8f1cd21e18e8b2 (diff) |
content: wrap long lines using new program wrap.go
Wrapping long lines will make diffs easier to read
for the eventual conversion to Markdown.
For golang/go#33955.
Change-Id: Ibcc1b5a84ccc9144b5fcdc9266f2da3e2cf3c5a3
Reviewed-on: https://go-review.googlesource.com/c/blog/+/222839
Reviewed-by: Ian Lance Taylor <iant@golang.org>
Diffstat (limited to 'content/learn-go-from-your-browser.article')
-rw-r--r-- | content/learn-go-from-your-browser.article | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/content/learn-go-from-your-browser.article b/content/learn-go-from-your-browser.article index a3cd470..8458c09 100644 --- a/content/learn-go-from-your-browser.article +++ b/content/learn-go-from-your-browser.article @@ -6,10 +6,16 @@ Andrew Gerrand * Introduction -We are excited to announce [[https://tour.golang.org/][A Tour of Go]], a guided tour of the Go programming language you can run from your browser. +We are excited to announce [[https://tour.golang.org/][A Tour of Go]], +a guided tour of the Go programming language you can run from your browser. -The tour is hands-on, demonstrating the language through code samples that you can modify, compile, and run from the tour itself. (The technology behind the [[https://golang.org/doc/play/][Go Playground]] does the work.) +The tour is hands-on, demonstrating the language through code samples that you can modify, +compile, and run from the tour itself. +(The technology behind the [[https://golang.org/doc/play/][Go Playground]] does the work.) -The tour has three sections. The first section covers basic syntax and data structures; the second discusses methods and interfaces; and the third introduces Go's concurrency primitives. Each section concludes with a few exercises so you can practice what you've learned. +The tour has three sections. The first section covers basic syntax and data structures; +the second discusses methods and interfaces; +and the third introduces Go's concurrency primitives. +Each section concludes with a few exercises so you can practice what you've learned. So, what are you waiting for? [[https://tour.golang.org/][Get started now!]] |