4MELFA-BASIC IV
Detailed explanation of command words
4-204
GoTo (Go To)
[Function]
This instruction makes a program branch to the specified label step unconditionally.
[Format]
[Terminology]
<Branch Destination>
Describe the label name.
[Reference Program]
:
10 GoTo *LBL
' Branches to the label *LBL.
:
100 *LBL
101 Mov P1
[Explanation]
(1) If a branch destination or label does not exist, an error will occur during execution.
GoTo[]<Branch Destination>