This should be another simple helper function that can be incredibly useful. ```go func Parts(num Decimal) (whole, dec Decimal) { return num.Trunc(0), num.Abs().Sub(num.Trunc(0).Abs()) } ```
This should be another simple helper function that can be incredibly useful.