GoLang Marshal to empty string

Would you help me understand why Marshal of the struct Person is empty but for the struct User is not ? // You can edit this code! // Click here and start typing. package main import ( "encoding/json" "fmt" ) type Person struct { name string addr string phone string } type User struct {… Read More GoLang Marshal to empty string