Last time, I started talking about why some of Go‘s time-saving features are actually false economy. Today, I want to go through our first example: short variable declarations.
In Go, you can declare a variable inside a function with an initial value using the syntax
x := 5
This is …