Initializing Variables in Go

In Go, you need to use the make() function to initialize certain data structures like slices, maps, and channels before you can use them.

Different datatypes have different default initialized value or something. In order not to have something that's big ERROR, gotta "make" it. Specifically....crap I forgot the stuff I read in the docs. Shoulda taken notes...

Last updated