Short Hand Variable Declaration in Go

Variables in Go can have short-hand declarations, like this:

name := "Jane"

We can also define multiple variables this way, for example:

name, surname, age := "Jane", "Smith", 29