Skip to content

Instantly share code, notes, and snippets.

@iporsut
Created March 8, 2015 08:15
Show Gist options
  • Save iporsut/2f03a716833ea7bfa044 to your computer and use it in GitHub Desktop.
Save iporsut/2f03a716833ea7bfa044 to your computer and use it in GitHub Desktop.
go test Example from json format
func ExampleJsonFormat() {
r := bytes.NewReader([]byte(`{"name":"Weerasak"}`))
formated, _ := From(r)
fmt.Println(formated)
// Output:
// {
// "name": "Weerasak"
// }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment