Advanced Programming in Go: Deep Dive into Packages

placeholder

All Go programs are composed of one or more packages. Packages organize Go source code in a way that makes the code easily reusable and readable. Packages essentially allow you to take one or more source code files and compartmentalize them into a single unit. In this course youll explore what Go packages are and why they are used. Youll examine best practice for working with Go packages and learn about working with modules and packages. Next youll learn about package names and how to declare and import packages. Finally youll explore how to create and use custom packages and nested packages as well as how to use the init() function in Go to initialize an application.