Struct Embedding and Composition

Struct Embedding and Composition

Structs can be embedded to achieve composition.

type Animal struct {
    Name string
}

type Dog struct {
    Animal
}
← PrevNext →