DIM

Action

Declare one or more local variables.

 

Syntax

DIM "variable1" [<,>"variablex"]

 

Remarks

Local variables are visible only in the current script or script segment.

 

Examples

DIM $Variable

 

DIM $Array[9]  ; Note : declaration of an array of 10 elements.

 

IF $X = 1

   DIM $Var1, $Var2, $Var3

ENDIF