A program using labels will break on consecutive LOAD / RUN cycles. Something like:
LOAD "TEST.BAS"
RUN
LOAD
RUN
ERROR in line 14: Undefined line
STACK TRACE:
14:gosub my_label_1
EDIT instead of LOAD does the same thing. Doing:
LOAD "TEST.BAS"
RUN
NEW
LOAD
RUN
works.
A program using labels will break on consecutive `LOAD` / `RUN` cycles. Something like:
```
LOAD "TEST.BAS"
RUN
LOAD
RUN
ERROR in line 14: Undefined line
STACK TRACE:
14:gosub my_label_1
```
`EDIT` instead of `LOAD` does the same thing. Doing:
```
LOAD "TEST.BAS"
RUN
NEW
LOAD
RUN
```
works.
A program using labels will break on consecutive
LOAD
/RUN
cycles. Something like:EDIT
instead ofLOAD
does the same thing. Doing:works.