Explain, please, why in the second case the phone name is not displayed?
package main import ( "fmt" ) type Person struct { Name string } func (p *Person) Talk() { fmt.Println("Привет, моё имя", p.Name) } type Android struct { Person Model string } func main() { alex := Person{Name: "Dima"} alex.Talk() //mobile := new(Android) mobile := new(Android) mobile.Model = "Asus" mobile.Talk() }