LABEL LabelName
Set the label of the code sequence with LabelName.
LABEL LabelName
LabelName - Label name of code sequence. Implicitly converted to string type.
> 10 i = 0
> 20 LABEL loop_start
> 30 i = i + 1
> 40 PRINT i
> 50 GOTO loop_start
> RUN
1
2
3
...