The foundations of a Go Program
Let's dive into one of the foundations of Go programs. In this lesson, you'll learn to organize your code in a directory structure that will help separate concerns, promote understanding, and support the evolution of the code.
The importance of directory structure
Command-line programs can be tiny or very large. Large programs have a lot of code and are developed over a long time by many different developers. The proper ...