RENUM
Renumbers the lines of a program
RENUM
Caution! This command does not change the GOTO LineNumber.
> 11 i = 0
> 13 LABEL loop_start
> 16 i = i + 1
> 24 PRINT i
> 25 GOTO loop_start
> LIST
11 i = 0
13 LABEL loop_start
16 i = i + 1
24 PRINT i
25 GOTO loop_start
OK
> RENUM
OK
> LIST
10 i = 0
20 LABEL loop_start
30 i = i + 1
40 PRINT i
50 GOTO loop_start
OK