Custom Packages and Visibility
This lesson provides a detailed description on how to create and successfully run a custom package in any Go IDE.
Packages are the primary means in Go for organizing and compiling code. A lot of basic information about packages has already been given in Chapter 2, most notably the Visibility rule. Now we will see concrete examples of the use of packages that you write yourself. By custom packages, we mean self-written packages or packages otherwise ...