package main import "fmt" type Planet struct { Name string Population int } func main() { planet1 := Planet{"Mars", 100} planet2 := Planet{Population: 100, Name: "Mars"} fmt.Println(planet1 == planet2) // ?? }