5 lines
91 B
Smalltalk
5 lines
91 B
Smalltalk
|
|
1 to: 5 do: [ :aNumber |
|
||
|
|
aNumber timesRepeat: [ '*' display ].
|
||
|
|
Character nl display.
|
||
|
|
]
|