5 lines
59 B
Text
5 lines
59 B
Text
FOR i = 10 TO 0 STEP -1
|
|
PRINT i; " ";
|
|
NEXT i
|
|
PRINT
|
|
END
|