4 lines
37 B
Go
4 lines
37 B
Go
|
|
type eatable interface {
|
||
|
|
eat()
|
||
|
|
}
|