VAR

Declares a temporary variable that contains a single value.

Note:

You can also use a single VAR command to declare multiple variables by supplying a comma-delimited list of variable names.

Syntax

VAR varName [= value] ;
ParameterDescription

varName

Name of the temporary variable.

value

Optional parameter that declares the data value.

Notes

Example

VAR Target = 1200;

VAR Break1, Break2, Break3;

See Also

  • ARRAY