DIM dim_list

DIMensions the variables defined in dim_list. Note that the statement:

DIM A(8)

DIMensions A to be an INTEGER array of 9 elements (i.e., 0..8). Also, STRING arrays are DIMensioned as if they are REAL arrays, i.e.,

00100 DIM F0(9)
	.
	.
01000 F0$(1) = "microbee"

Additionally, multiple arrays may be declared on the one line:

00100 DIM A(9),B0(10)

Program Example.

00100 DIM A(9)
00110 DIM C0(9),00(9)
00120 FOR I = 0 TO 9
00130 A(I) = 10
00140 CO(I) = 90.98
00150 DO$ = "null"
00160 NEXT I
00170 END

Try it