September 2017
Intermediate to advanced
466 pages
9h 33m
English
Packages make the design, implementation, and maintenance of large software systems easier and simpler. Moreover, they allow multiple programmers to work on the same project without any overlapping. So, if you find yourselves using the same functions all the time, you should seriously consider including them in your own Go packages.
The source code of a Go package, which can contain multiple files, can be found within a single directory, which is named after the package with the exception of the main package, which can have any name.
The Go code of the aSimplePackage.go file, which will be developed in this section, will be presented in two parts.
The first part is the following:
package aSimplePackage import ( ...
Read now
Unlock full access