Loops/Downward for: Difference between revisions

Content deleted Content added
KayproKid (talk | contribs)
m →‎{{header|ALGOL-M}}: added workaround
Miks1965 (talk | contribs)
PascalABC.NET
Line 1,897:
<syntaxhighlight lang="pascal">for i := 10 downto 0 do
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}}==