RosettaCodeData/Task/Loops-For/Simula/loops-for.simula

5 lines
74 B
Plaintext

FOR I:=1 UNTIL 5 DO
FOR J:=1 UNTIL I DO
OUTTEXT("*");
OUTLINE