7 lines
85 B
Text
7 lines
85 B
Text
FOR i = 1 TO 5
|
|
FOR j = 1 TO i
|
|
PRINT "*";
|
|
NEXT j
|
|
PRINT
|
|
NEXT i
|
|
END
|