Go closures
Eu tinha duas funções quase idênticas para analisar um XML com XPath: func xpathContent(root xml.Node, xpath string) string { result, _ := root.Search(xpath) if len(result) > 0 { return strings.TrimSpace(result[0].Content()) …
Continuar lendo