package main import "fmt" type Person struct { Name string Age int Country string } func main() { // Create a new instance of the Person struct p := Person{ Name: "John", Age: 30, Country: "USA", } // Access and print the fields of the Person struct fmt.Println("Name:", p.Name) fmt.Println("Age:", p.Age) fmt.Println("Country:", p.Country) }