package json import "testing" func TestJson(t *testing.T) { a := map[string]any{ "a": 1, } j, _ := json.Marshal(a) println(string(j)) }