Loops/Downward for: Difference between revisions

Add Plain English
(Add Plain English)
Line 1,506:
end;
</lang>
 
=={{header|Plain English}}==
One way might be:
<lang plainenglish>To run:
Start up.
Put 11 into a counter.
Loop.
If the counter is below 0, break.
Convert the counter to a string.
Write the string on the console.
Repeat.
Wait for the escape key.
Shut down.
 
To decide if a counter is below a number:
Subtract 1 from the counter.
If the counter is less than the number, say yes.
Say no.</lang>
 
=={{header|Pop11}}==
1,827

edits