1 min read 41 words Updated Sep 24, 2026 Created Sep 24, 2026

While there is no classic inheritance using keyswords like "implements" we can embed structs in other structs:

type Car struct {
    Brand string
}

func (c Car) Drive() string {
    return "vroom"
}

type Porsche struct {
    Car
}