Basic/data/HELP/GOTO

10 lines
85 B
Plaintext
Raw Permalink Normal View History

2014-04-30 20:24:00 +02:00
Syntax:
GOTO <expr>
2014-06-14 15:03:48 +02:00
2014-04-30 20:24:00 +02:00
Bsp.:
10 X = X + 1
20 IF X > 10 THEN GOTO 40
30 GOTO 10
40 END