mirror of
https://github.com/crazybber/awesome-patterns.git
synced 2025-04-10 12:31:02 +00:00
5 lines
53 B
Go
5 lines
53 B
Go
package main
|
|
|
|
type Car interface {
|
|
NumDoors() int
|
|
}
|