How to declare and initialize static arrays

//
// 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'
  );

你可能感兴趣的:(How to declare and initialize static arrays)