DENUM Verb
Syntax
DENUM
Description
In BBj 6.0 and higher, DENUM acts on the entire current program. Use DENUM to remove line numbers from a BBj program that currently has line numbers.
For example:
>load "test.src"
>list
0010 goto 20
0020 print (0,err=50) "hello"
0030 gosub 40
0040 END_LABEL: release
>DENUM
>list
goto L20
L20: print (0,err=L41) "hello"
gosub END_LABEL
END_LABEL: release
L41: