Files
zire/pasture/sheep.go
2026-03-06 00:07:44 +08:00

14 lines
172 B
Go

package pasture
type Sheep struct {
lines string
}
func (s *Sheep) Sound() string {
return s.lines
}
func NewSheep(line string) *Sheep {
return &Sheep{lines: line}
}