I\'d like to create a map of string to container/list.List instances. Is this the correct way to go about it?
container/list.List
package main import ( \"fmt\"
My favorite syntax for declaring a map of string to slice of string:
mapOfSlices := map[string][]string{ "first": {}, "second": []string{"one", "two", "three", "four", "five"}, "third": []string{"quarter", "half"}, }