This example shows specifying the starting line number in the
increment between new line number. Type the following at the prompt:
AUTONUM 10,5
SUB START
PRINT "HELLO WORLD"
GOTO START
LIST
AUTONUM 10,5
10 SUB START
15 PRINT "HELLO WORLD"
20 GOTO START
The three lines are automatically started
with the
AUTONUM
parameters; in this case, the
first line starts with 10 and each subsequent line increments by
5.