type Car struct {
    price int
    Mover
    speed int
}

func main() {
    var c Car
    fmt.Printf("%v\n", c)
}       