7 lines
74 B
Go
Raw Normal View History

2018-01-14 15:43:41 +10:00
package main
type Vehicle interface {
NumWheels() int
NumSeats() int
}