I love how simply I can manage concurrency in Go. Instead of waiting 9 seconds for 3 functions to finish execution sequentially, I run them as goroutines, even ordering them with channels, and get the result in 4 seconds (sleepfrom the third action).