gs C oIle c ti onO fL ine s
"return a collection containing the lines (separated by cr) of the receiver."
|lines myClass
"count first, to avoid regrowing"
numberOfLines := (self occurrencesOf:Character cr) + 1. lines := OrderedCollection new:numberOfLines. myClass := self species.