membuat golang

//Allocates a zeroed array and returns a slice that refers to that array:
a := make([]int, 5)  // len(a)=5
//		make(map[keyType]valueType)  Allocate a map with make
map1 := make(map[string]int)
Armandres