Add Go XML to structure tags
The Go programming language can directly map XML to structure fields. Add the correct XML tag after each field.
Start file
package main // FooXML mapping from XML to struct type FooXML struct { Field1 string Field2 string Field3 string }
End file
package main // FooXML mapping from XML to struct type FooXML struct { Field1 string `xml:"field1"` Field2 string `xml:"field2"` Field3 string `xml:"field3"` }
View Diff
5,7c5,7 < Field1 string < Field2 string < Field3 string --- > Field1 string `xml:"field1"` > Field2 string `xml:"field2"` > Field3 string `xml:"field3"`
Solutions by @grigouille2:
Unlock 1 remaining solutions by signing in and submitting your own entry