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

6 lines
54 B
Text

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