Can you declared multiple types of variables in single declaration in Go? Technology Community › Category: Golang › Can you declared multiple types of variables in single declaration in Go? 0 Vote Up Vote Down VietMX Staff asked 4 years ago Yes. Variables of different types can be declared in one go using type inference. var a, b, c = 3, 4, "foo"