4 lines
62 B
Smalltalk
4 lines
62 B
Smalltalk
|
|
1 to: 5 do: [ :row |
|
||
|
|
1 to: row do: [:col | '*' display ].
|
||
|
|
]
|