|
Slide 12.7: .WHILE directive Slide 13.2: Local variables Home |
|
LOCAL directive declares one or more local variables inside a procedure.
It is placed on the line immediately following a PROC directive.
The syntax is
LOCAL varlist
varlist is a list of variable definitions, separated by commas, optionally spanning multiple lines.
Each variable definition takes the following form:
label: type
The label may be any valid identifier, and type can either be a standard type or a user-defined type.