Loops/Downward for: Difference between revisions

→‎{{header|PL/0}}: Added a solution.
(Dialects of BASIC moved to the BASIC section.)
(→‎{{header|PL/0}}: Added a solution.)
Line 1,797:
}
}</syntaxhighlight>
 
=={{header|PL/0}}==
<syntaxhighlight lang="pascal">
var i;
begin
i := 10;
while i > -1 do
begin
! i;
i := i - 1
end
end.
</syntaxhighlight>
 
=={{header|PL/I}}==
511

edits