Recap: Go Packages and Functions

Let’s look at a chapter summary and take a short quiz to test our understanding of this chapter’s content.

Summary

This chapter presented two primary topics: functions and packages. Functions are core features in Go, which makes them powerful and handy. Remember that everything that begins with an uppercase letter is public. The only exception to this rule is package names. Private variables, functions, data type names, and structure fields can be strictly used and called internally in a package, whereas public ones are available to everyone. Additionally, we learned more about the defer keyword. Also, memorize that Go packages are not like Java classes—a Go package can be as big as it needs to be. Regarding Go modules, keep in mind that a Go module is multiple packages with a version.

Finally, this chapter discussed creating documentation, GitHub Actions and GitLab Runners, how these two CI/CD systems can help us automate recurring, manual processes, and how to assign unique version numbers to our utilities.

Quiz on Go packages and functions

Get hands-on with 1200+ tech skills courses.