Examples Delphi

//
// use "const" instead of "var"
// because we're creating a static array
//
const
sArray : array [1..3] of string =
(
//
// now simply insert 3 strings
// according to the size of the
// array as defined above
//
'item #1',
'item #2',
'item #3'
);