Enum Data
Enum variants can carry associated data. Each variant can hold different types and amounts of data.
This is what makes enums true sum types: a value is one variant OR another, and each variant can have its own shape.
Try it: Add a Triangle variant with a base and height.