Below you will see a declaration of the country struct. Find its fields that are public and accessible from other packages, if there are any. In case there are no such fields, select the last answer.
type country struct {
Name string
Capital string
Language string
Currency string
Population int
}