RosettaCodeData/Task/Loops-Downward-for/Phix/loops-downward-for.phix
2016-12-05 23:44:36 +01:00

3 lines
38 B
Text

for i=10 to 0 by -1 do
?i
end for