Contact: aviboots(AT)netvision.net.il
41,199 questions
53,699 answers
573 users
package main import "fmt" func main() { var mp = map[string]int{"go":35,"php":4, "c++":120} fmt.Println(mp) mp["python"] = 8372 fmt.Println(mp) } /* run: map[c++:120 go:35 php:4] map[c++:120 go:35 php:4 python:8372] */