I'm just wondering, is there a possible way to declare constant arrays? I've tried the following code, but the SCAR compiler gives me an error.
Currently, I'm using a variable as an alternative.Code:const Number = [333, 4355];
Code:var Number : TIntegerArray;However, using constants seems to keep code more clear and efficientCode:Number := [333, 4355];.


.
Reply With Quote







