Conditional structures: Difference between revisions

Add Plain English
(Add Plain English)
Line 5,870:
...
END;</syntaxhighlight>
 
=={{header|Plain English}}==
Plain English only has one kind of conditional, called a "conditional".
<syntaxhighlight lang="text">If [a decider], [do something]; [do another thing].</syntaxhighlight>
The first parameter is a decider that returns yes or no. If the result was yes, all the other statements on the same line as the conditional will execute. Otherwise, execution continues immediately to the next line.
 
If the decider uses a negative word, the negative word is removed, the decider is done normally, and the result is reversed.
 
Conditionals may not go beyond 1 SLOC. Conditionals cannot be nested.
 
=={{header|Pop11}}==
175

edits