6 lines
92 B
Text
6 lines
92 B
Text
#APPTYPE CONSOLE
|
|
For Dim i = 1 To 10
|
|
PRINT i;
|
|
IF i < 10 THEN PRINT ", ";
|
|
Next
|
|
PAUSE
|