Functions
Let’s learn about functions.
We'll cover the following...
The main elements of packages are functions, which are the subject of this lesson.
Tip: Functions must be as independent of each other as possible and must do one job (and only one job) well.
So, if we find ourselves writing functions that do multiple things, we might want to consider replacing them with multiple functions instead.
The func
keyword
We should already know that all function definitions begin with the func
keyword, followed by the function’s signature and its implementation and that functions accept zero or more arguments and return zero or more values back. The single most popular Go function is main()
, which is used in every ...