Reputation: 7966
I am try to create a map of string slice with the code in GO
newMap := map [string][]string{
"first" : {
"good", "bad"
},
"second" : {
"top", "bottom"
}
}
It seems not to be the right way, what is the wrong with it?
Upvotes: 2
Views: 157