Quote:
Originally Posted by describe19
I have another question: I am trying to make an array of strings I have tried this but it doesn't work:
var
MyArray: array [0..2] of string =('cat','dog','man');
Is it possible to declare and initialize an array of strings in such a way?
|
var
MyArray: array of string;
begin
MyArray := ['cat','dog','man'];