October 2016
Beginner
348 pages
6h 31m
English
Chapter 5, Functions in Go covered functions, the elementary level of abstraction for code organization that makes code addressable and reusable. This chapter continues up the ladder of abstraction with a discussion centered around Go packages. As will be covered in detail here, a package is a logical grouping of language elements stored in source code files that can be shared and reused, as covered in the following topics:
Similar to other languages, Go source code files are grouped into compilable and sharable units known as packages. However, all Go source ...
Read now
Unlock full access