Functions

Learn about functions in Go.

defer statement

defer statement doesn’t seem to have big traps, but it’s worth mentioning a few nuances.

From an excellent post by Andrew Gerrand on the subject:

Note: A defer statement pushes a function call onto a list. The ...