Explore >> Select a destination


You are here

timilearning.com
| | cep.dev
6.9 parsecs away

Travel
| | A small post with a bit of Go trivia
| | aarol.dev
3.9 parsecs away

Travel
| | Compared to Javascript, Python and other single threaded languages, Go takes a very different approach to I was having difficulties understanding how concurrent ...
| | hjr265.me
2.5 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.
| | david-codes.hatanian.com
19.4 parsecs away

Travel
| Having worked in the software engineering field for 6 years, I sometimes pause and consider how much I have learned since I started my career. One thing that...