Short Hand Variable Declaration in Go 📆 April 08, 2020 Share 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