So, for fun I wrote a PlayingCard class with two instance variables, suit and
value.
calling collect: [:eachCard | eachCard value]
on a collection of cards didn't work as I'd expected, but of course 'value'
is the method on Object that returns self.
Easily fixed by renaming the 'value' variable to faceValue (and associated
accessors), but made me laugh...