Loops/Downward for: Difference between revisions

Content deleted Content added
Petelomax (talk | contribs)
m →‎{{header|Phix}}: added syntax colouring the hard way, phix/basics
Jjuanhdez (talk | contribs)
Line 388:
<lang BASIC256>for i = 10 to 0 step -1
print i; " ";
next i
print
end</lang>