basic/doc/statements/
renum.rs

1/*!
2# `RENUM [<new number>][,<old number>][,<increment>]`
3
4## Purpose
5Renumber a program.
6
7## Remarks
8New number defaults to 10. If old number is specified, lines less than
9that number are not renumbered. Increment defaults to 10.
10All statements containing line numbers are updated.
11You can not change the order of lines.
12Failures do not modify the program in memory.
13
14## Example
15```text
16RENUM 1000
17RENUM 100,,100
18```
19
20*/