Records support methods but not inheritance or mutable state.
While you can add methods to records, they don't support inheritance or mutable fields, which limits behavioral complexity. For example, adding a method to format an `Invoice` record's total is simple, but handling dynamic state changes is not feasible.
Additional Notes
What limitations might you face when adding behavior to records?