Script Labels

A "label" or "statement label" identifies a line in a script so that other statements can refer to that line. Labels are named similarly to variables except that they begin with the @ character. The following are examples of valid labels:

 

@start

@error

 

Refer to the CONTINUE, GOTO, and GOSUB statements for examples of how to use labels.