0018: Invalid array size
You did not specify the size of the array in the
VAR..END
construct, or provided an invalid value (for example, a string instead of a number).Possible solutions: use a valid integer value:
var
$var: array of Float // incorrect
$var: array 10 of Float // correct
end
Last modified 2yr ago