初始化捏

This commit is contained in:
des
2026-03-06 00:07:44 +08:00
commit 1271ceeee7
6 changed files with 67 additions and 0 deletions

5
interface.go Normal file
View File

@@ -0,0 +1,5 @@
package lab
type Animal interface {
sound() string
}