Yes. To do what you're attempting, you can use GOTO from immediate mode.rje wrote: ↑Tue Feb 21, 2023 6:27 pm Along the lines of BASIC compatibility, I just tried this on the emulator.The result: the variable namespace is cleared out before the BASIC program runs:Code: Select all
10 ? "uid: " u 20 ? "uname: " n$ u=400 : n$ = "dave" : run
Is this correct behavior?Code: Select all
UID : 0 UNAME:
decisions re: BASIC and why?
Re: decisions re: BASIC and why?
Re: decisions re: BASIC and why?
GOTO!! Brilliant - thank you!