basic/doc/statements/
goto.rs

1/*!
2# `GOTO <line number>`
3
4## Purpose
5Immediately and unconditionally move execution to the specified line number.
6
7## Remarks
8If `<line number>` doesn't exist an `?UNDEFINED LINE` error will occur.
9
10## Example
11```text
1210 GOTO 30
1320 PRINT "THIS WILL NOT PRINT"
1430 PRINT "THIS WILL PRINT"
15```
16
17*/