Structs can be embedded to achieve composition.
type Animal struct { Name string } type Dog struct { Animal }