Oh, and I forgot to mention:<br><br>I don&#39;t personally see traits as something that comes up that often.&nbsp; 99% of the time inheritance, or some OO pattern gives the best solution.&nbsp; But in that 1% something like a trait is the correct solution and not having it shows up a design wart.
<br><br>Personally the thing that stuck out to me in my travels through the Squeak image was just the Magnitude class.&nbsp; I personally think that should just be a trait.&nbsp; In fact I would see at least equality and comparability as separate traits.&nbsp; By having it be a class causes certain design warts [1] imo.
<br><br>[1]&nbsp; In the case where a class should really inherit somewhere else you either have to inherit from Magnitude and duplicate the other code, inherit from the correct class and duplicate the Magnitude code or change the highest class in your hierarchy to inherit from Magnitude instead of Object.&nbsp; These solutions are all code smell imo.
<br>