LABEL

LABEL LabelName

Defines a label with name LabelName. A label marks a position in the code. Use GOTO or GOSUB to continue program execution at that label.

Example

label FirstLine
    
ii++
print ii
if(ii == 10) then goto LastLine 
goto FirstLine

label LastLine
Language
If there is insufficient information on this page and you wish learn more about LABEL, please send an email to smallbasic@gmail.com. You can help to improve information about LABEL by submitting a pull request, click View Source for details. Note, an offline language reference text file is also available - see the Download section.