commit | 612f874e576bd25d779cbe18a422de0225cbd1e1 | [log] [tgz] |
---|---|---|
author | Dustin L. Howett <dustin@howett.net> | Mon Feb 12 08:04:28 2018 |
committer | Dustin L. Howett <dustin@howett.net> | Mon Feb 12 08:04:30 2018 |
tree | d93818eac6e0d54a5abb7787606538c5a704506c | |
parent | 4673552dec1807a6a07f618e5d5fc9dd5776891f [diff] |
xml: move invalid xml tests to their own file
$ go get howett.net/plist
package main
import (
"howett.net/plist"
"os"
)
func main() {
encoder := plist.NewEncoder(os.Stdout)
encoder.Encode(map[string]string{"hello": "world"})
}