06-30-2024, 01:53 PM
QB64 doesn't support arrays in TYPEs. The usual options to fake it are either A) store an integer that references an index in a separate (usually global) 2D array, or B) serialise the content to a string with MKL$ and friends. Note that QB64 does allow strings of variable length in TYPE declarations.