RosettaCodeData/Task/Loops-For/ERRE/loops-for.erre
2016-12-05 23:44:36 +01:00

6 lines
86 B
Text

FOR I=1 TO 5 DO
FOR J=1 TO I DO
PRINT("*";)
END FOR
PRINT
END FOR