Loops/For with a specified step: Difference between revisions

Add Plain English
(Added EasyLang implementation)
(Add Plain English)
Line 2,120:
end;
</syntaxhighlight>
 
=={{header|Plain English}}==
Plain English has only one type of loop: an infinite loop that can be given a conditional break or exit. So there is nothing particularly special about this.
<syntaxhighlight lang="plainenglish">
To run:
Start up.
Put 0 into a number.
Loop.
If the number is greater than 50, break.
Convert the number to a string.
Write the string to the console.
Add 5 to the number.
Repeat.
Wait for the escape key.
Shut down.</syntaxhighlight>
 
=={{header|PowerShell}}==
1,808

edits