6 lines
63 B
Text
6 lines
63 B
Text
var i = integer
|
|
for i = 10 to 1 step -1
|
|
print i;
|
|
next i
|
|
|
|
end
|