Functions
Learn about functions in Go.
We'll cover the following...
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
deferstatement pushes a function call onto a list. The ...
 Ask