RosettaCodeData/Task/Loops-Downward-for/Simula/loops-downward-for.simula
2023-07-01 13:44:08 -04:00

8 lines
117 B
Text

BEGIN
Integer i;
for i := 10 step -1 until 0 do
BEGIN
OutInt(i, 2);
OutImage
END
END