MM Basic labels


Author Message
Grogster

Admin Group

Joined: 31/12/2012
Location: New Zealand
Posts: 9203
Posted: 05:39am 27 Jun 2023      

Hello.

Try IF S>Q THEN GOTO CCC1 ELSE GOTO CCC2

When you employ labels, you have to GOTO them specifically, if the code does not simply run over the top of the label during the normal passage through the loop.

In other words, NOT using GOTO, the interpreter is thinking CCC1 and CCC2 are commands or subroutine names.  It can't find either, so stops with the error.