Archived
1
0
This repository has been archived on 2025-03-31. You can view files and clone it, but cannot push or open issues or pull requests.
pascal/TYPEFILE.PAS
2001-11-30 12:14:44 +01:00

22 lines
294 B
Plaintext

program TypeTest;
type TTest=record
x,y: integer;
bla: string[20];
end;
var Test: TTest;
f: file of TTest;
begin
Assign(f,'test.dat');
Rewrite(f);
Test.x := 5;
Test.y := 10;
Test.bla := 'This is only a test!!';
Write(f, Test);
end.