var
f1 :file;
f2 : text;
f3 :textfile;// from AssignFile hlp
(* File type declarations from Delphi file help *) type
Person =record
FirstName:string[15];
LastName :string[25];
Address :string[35]; end;
PersonFile =fileof Person;
NumberFile =fileofInteger;
SwapFile =file;