8 lines
114 B
Go
8 lines
114 B
Go
package people
|
|
|
|
// Animal represents information about all animals.
|
|
type Person struct {
|
|
Name string
|
|
Age int
|
|
}
|