Files
moxa/_test/map8.go
Marc Vertes 1245e29a11 fix: handle implicit array types in composite litteral expressions (#66)
At CFG, in pre-order processing, determine the correct type of CompositeLitExpr from its first child (if it's a type) or from the ancestor node.
Make sure The type is propagated to children so the algorithm works recursively.

Fix also the isType() method to handle case of imported types,
either from source or binary packages.
2019-02-01 10:44:18 +01:00

28 lines
382 B
Go

package main
import (
"fmt"
"sort"
)
func main() {
m := map[string][]string{
"hello": {"foo", "bar"},
"world": {"truc", "machin"},
}
var content []string
for key, values := range m {
for _, value := range values {
content = append(content, key+value)
}
}
sort.Strings(content)
fmt.Println(content)
}
// Output:
// [hellobar hellofoo worldmachin worldtruc]