Skip to content
Craig Edwards edited this page Apr 28, 2023 · 3 revisions

DIM

DIM variable-name,integer-expression

Declare an array of variables of size defined by the expression. The type of variables stored in the array is determined by the type of variable-name. Arrays are zero-indexed and range checked, so the lowest value you may store in an array is 0 and the highest is integer-expression - 1.

Clone this wiki locally