RosettaCodeData/Task/Loops-Downward-for/Simula/loops-downward-for.simula
2016-12-05 22:15:40 +01:00

8 lines
117 B
Text

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