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
Try this in the go-playground: https://play.golang.org/
package main import "fmt" func main() { a, b := "a", "b"; //Declare And Assign var c, d string; //Declare Only fmt.Println(a,b); fmt.Println(c,d); }