Basic/data/HELP/GOTO

11 lines
90 B
Plaintext

GOTO
Syntax:
GOTO <expr>
Bsp.:
10 X = X + 1
20 IF X > 10 THEN GOTO 40
30 GOTO 10
40 END