pascalabcnet/TestSuite/arrayoffile1.pas
Бондарев Иван e6e67c193c initial commit
2015-05-14 21:35:07 +02:00

14 lines
325 B
ObjectPascal

type TFile = file of real;
TFileArray = array[1..3] of file of integer;
TDynFileArray = array of file of real;
var arr : TFileArray;
darr : TDynFileArray;
begin
Assign(arr[1],'test.dat');
SetLength(darr,3);
Assign(darr[0],'test3.dat');
darr := new TFile[3];
Assign(darr[1],'test.dat');
end.