A Pretty-printer for Go data structures
$ go get github.com/gobs/pretty
http://godoc.org/github.com/gobs/pretty
import "github.com/gobs/pretty"
stuff := map[string]interface{} {
"a": 1,
"b", "due",
"c", []int { 1, 2, 3 },
"d": false
}
pretty.PrettyPrint(stuff)