A long time ago I remember I could do this in Turbo Pascal 7.
Maybe I'm wrong and it's something I need to clarify, but is it possible to declare an array of strings as a constant?
If not what's the option/workaround.
What I have now is:
type
TStates = (sOne, sTwo, sThree);
var
TArrayOfString: array [sOne..sThree] of string =
('State one', 'State two', 'State three');
but would want to replace that var with a const.
Thanks
Edit 1: Added some more code to clarify my question.