RosettaCodeData/Task/Repeat-a-string/Smalltalk/repeat-a-string-4.st

4 lines
73 B
Smalltalk
Raw Permalink Normal View History

2013-04-10 23:57:08 -07:00
ws := '' writeStream.
n timesRepeat: [ws nextPutAll: 'ha'].
ws contents.