Matthew Fulmer uploaded a new version of Collections to project The Trunk:
http://source.squeak.org/trunk/Collections-mtf.412.mcz==================== Summary ====================
Name: Collections-mtf.412
Author: mtf
Time: 9 December 2010, 12:49:06.157 pm
UUID: 914110ae-fc74-410d-b816-ebac6af7162f
Ancestors: Collections-ul.411
added convenience method: Transcript showln: that prints a line with a carriage return to transcript.
imported from OpenCobalt Collections-jrd.40
=============== Diff against Collections-ul.411 ===============
Item was added:
+ ----- Method: TranscriptStream>>showln: (in category 'stream extensions') -----
+ showln: anObject "TextCollector compatibility"
+ self nextPutAll: anObject asString; cr ; endEntry!