4 lines
123 B
Smalltalk
4 lines
123 B
Smalltalk
|
|
bagOfChars := Bag new.
|
||
|
|
'someFile' asFilename readingLinesDo:[:eachLine | bagOfChars addAll:eachLine].
|
||
|
|
bag sortedCounts ...
|