
Note: You must add uk to the end of the address, it's to help prevent spam. |
GOTO TYPE: Statement Action: This statement allows the BASIC program to execute lines out of numerical order. The word GOTO followed by a number will make the program jump to the line with that number. GOTO NOT followed by a number equals GOTO 0. It must have the line number after the word GOTO. It is possible to create loops with GOTO that will never end. The simplest example of this is a line that GOes TO itself, like 10 GOTO 10. These loops can be stopped using the <RUN/STOP> key on the keyboard. EXAMPLES of GOTO Statement:
|