Files
zire/interface.go

6 lines
55 B
Go
Raw Normal View History

2026-03-06 00:07:44 +08:00
package lab
type Animal interface {
sound() string
}