7 lines
76 B
Text
7 lines
76 B
Text
|
|
for i = 1 to 5
|
||
|
|
for j = 1 to i
|
||
|
|
print "*";
|
||
|
|
next j
|
||
|
|
print
|
||
|
|
next i
|