GLBasic User Manual

Main sections

DIMDATA

DIMDATA array#$[], data1#$, data2#$, ...



Allows the initialization of an array with values. The command:
DIMDATA array[], 34, 45

is identical to:
DIM array[2]
array[1]=34
array[2]=45

See also...