

Desktop Management Scripting › Desktop Management Scripting Language › Labels
Labels
A label is an identifier that conforms to the following rules:
- Begin or terminate a label by a colon ":".
- Use letters, digits, or underscores only.
- Use in a GOTO statement to transfer program execution from some point in the program to the statement prefixed by the label.
Note: Labels are not case-sensitive.
Example:
Dim Number As Integer
Number = 1
IF Number=1 Then GOTO end
PRINT "Number=0"
end:
Copyright © 2014 CA Technologies.
All rights reserved.
 
|
|