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/ITG/RECORDS.PAS
2001-11-30 12:14:44 +01:00

13 lines
136 B
Plaintext

program Records;
uses Crt;
type TAdr=record
N,V: string;
A: byte;
end;
var Adr1, Adr2: TAdr;
begin