Struct
A struct is a sequence of named elements, called fields, each of which has a name and a type.
A field declared with a type but no explicit field name is called an embedded field.
An embedded field must be specified as a type name T or as a pointer to a non-interface type name *T, and T itself b> may not be a pointer type.
type Car struct {
string brand
]