RosettaCodeData/Task/Loops-For/Axe/loops-for.axe
2023-07-01 13:44:08 -04:00

6 lines
54 B
Text

ClrHome
For(I,1,5)
For(J,1,I)
Output(J,I,"*")
End
End