Created
June 22, 2019 19:54
-
-
Save softwarebygabe/2561a3df9501d2fe54901d4de9a62409 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"encoding/xml" | |
"fmt" | |
) | |
type Cat struct { | |
Name string `xml:"name"` | |
Breed string `xml:"breed"` | |
Age int `xml:"age"` | |
} | |
func main() { | |
cat := Cat{ | |
Name: "Olive", | |
Breed: "Oriental Shorthair", | |
Age: 1, | |
} | |
bytes, err := xml.MarshalIndent(cat, "", " ") | |
if err != nil { | |
panic(err) | |
} | |
fmt.Println(string(bytes)) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.