5 lines
102 B
Text
5 lines
102 B
Text
|
|
FOR i% = 1 TO 10
|
||
|
|
PRINT ; i% ;
|
||
|
|
IF i% MOD 5 = 0 PRINT ELSE PRINT ", ";
|
||
|
|
NEXT
|