nesting
Nesting Structs
07/26/21 08:30 Filed in: GO
Last time I learned about how to use pointers in GO to pass strutcts to functions. Today, I figure out if there is anything I should know about nesting a struct within another struct. Read More…
Packages
03/01/21 08:32 Filed in: GO
In one of the first posts I wondered why fmt.Println() used a lowercase fmt and an uppercase Println. In this post I dive into GO packages which answer the question. Read More…