Notes on Go Language

I read “Understanding Go Language from Basics”. Since the book was published in 2012, the Go version is a bit old (Go 1.0.3), but I think the syntax and concepts haven’t changed much. I might use Go in the future, so I’m taking notes on points of interest. Instance Creation and Initialization: There are several options for creating instances, as shown in the code example below. What you especially need to be careful about is that Go also has the concept of pointers, so the question is whether a pointer or the actual value is generated....

January 21, 2017