Loops/Downward for: Difference between revisions

Content added Content deleted
m (→‎{{header|ALGOL-M}}: added workaround)
(PascalABC.NET)
Line 1,897: Line 1,897:
<syntaxhighlight lang="pascal">for i := 10 downto 0 do
<syntaxhighlight lang="pascal">for i := 10 downto 0 do
writeln(i);</syntaxhighlight>
writeln(i);</syntaxhighlight>

=={{header|PascalABC.NET}}==
<syntaxhighlight lang="delphi">
##
for var i:=10 downto 0 do
Print(i);
</syntaxhighlight>
{{out}}
<pre>
10 9 8 7 6 5 4 3 2 1 0
</pre>


=={{header|Peloton}}==
=={{header|Peloton}}==