Explore >> Select a destination


You are here

www.sethvargo.com
| | hjr265.me
6.4 parsecs away

Travel
| | Concurrency is one of the central features of Go. And, to build concurrent programs in Go, you need goroutines. A goroutine is like a thread, but lighter. Much lighter. And, like any other built-in feature of Go, using it is dead simple: 1 2 3 4 5 6 7 package main func main() { go func() { println("Hello World") // Print "Hello World" from a different goroutine. }() } Wait. That didn't print anything.
| | dolthub.com
2.5 parsecs away

Travel
| | Go 1.21RC2 is out and there's a bunch of small, but helpful new features and changes that are worth learning
| | mariocarrion.com
2.2 parsecs away

Travel
| | No language changes but really nice additions.
| | benhoyt.com
20.1 parsecs away

Travel
| Simple Lists is a tiny to-do list web application written in Go, with old school server-side rendering and no JavaScript.