One can declare and initialize a map in a single statement using a composite literal.
Using automatic type Short variable declaration:
mapIntInt := map[int]int{10: 100, 20: 100, 30: 1000}
mapIntString := map[int]string{10: "foo", 20: "bar", 30: "baz"}
mapStringInt :...