Is it possible to declare multiple variables at once using Golang?
For example in Python you can type this:
a = b = c = 80
and all
Another way to do this is like this
var ( a = 12 b = 3 enableFeatureA = false foo = "bar" myvar float64 anothervar float64 = 2.4 )
Also works for const
const ( xconst = 5 boolconst = false )