Last months I have been writing a lot of Go, and I have to admit it — I am in love. What is so great about the language? Let’s see.
Golang Is Array-Centric
If you are good with arrays, you are good with Go (kind of). The default way to do anything is to use a dynamic array, not a list. A Go slice is very similar to std::vector.