Go Basics - Arrays vs Slices
With this article I have tried giving a brief overview of two fundamental data structures in the Go programming language: arrays and slices. This may help anyone coming from a dynamic language to Go and understand the basics of couple of most used data structures in all programs . Arrays Arrays are fundamental data structures in the Go programming language that allow you to store and manage collections of elements of the same type.
Read article →