DIM keyword

Declares a variable as a specified data type (STRING, INTEGER)

Syntax

DIM variable AS type

Parameters

  • variable: a unique variable name. Cannot use recognized command names. (required);
  • type: data type ("STRING, INTEGER") (required);

Examples

DIM myText AS STRING
DIM myNumber AS INTEGER

Go back to list of Keywords.