2019-06-04, 11:52 PM
Well, you can also use CONST to define a value, and use them in an array definition
Rows and cols cannot change. They're constants. So this is allowed. 8)
Code:
const cols as Uinteger = 32
const rows as Uinteger = 24
dim a(rows, cols) as UintegerRows and cols cannot change. They're constants. So this is allowed. 8)

