Das geht nur bei globalen Variablen:
Delphi-Quellcode:
var
Days : Array [0..4] of String = ('name','Mo','Di','Mi','Do');
Als Konstante gehts überall:
Delphi-Quellcode:
const
Days : Array [0..4] of String = ('name','Mo','Di','Mi','Do');
E:
Achja, als Variable gehts doch mit einem kleinen 'hack':
Delphi-Quellcode:
const
{$J+}
Days : Array [0..4] of String = ('name','Mo','Di','Mi','Do');
{$J-}