Category : Files from Magazines
Archive   : CL-JUN89.ZIP
Filename : DEWOLF
Output of file : DEWOLF contained in archive : CL-JUN89.ZIP
Program test;
type
Employee_rec = record
PayrollNumber: integer;
Name: record
LastName: string[15];
FirstName: string[15];
MiddleInitial: char;
end;
StreetAddress: record
Street: string[20];
City: string[20];
State: string[2];
Zip: string[5];
end;
DepartmentCode: record
Division: integer;
Department: integer;
end;
HireDAte: record
Month: (Jan,Feb,Mar,Apr,May,Jun,
Jul,Aug,Sep,Oct,Nov,Dec);
Day: 1..31;
Year: integer;
end;
end;
var
Employees: file of Employee_rec;
Employee_buff: Employee_rec;
(LISTING 2)
Program test(input,output);
type
Employee_rec = record
PayrollNumber: integer;
Name: record
LastName: string[15];
FirstName: string[15];
MiddleInitial: char;
end;
end;
var
Employees: file of Employee_rec;
Employee_buff: Employee_rec;
Begin
Assign(Employees,'EX.DAT');
reset(Employees);
repeat
read(Employees,Employee_buff);
with Employee_buff
do writeln(Name.LastName,' ',PayrollNumber);
until eof(Employees);
close(Employees);
end.
Very nice! Thank you for this wonderful archive. I wonder why I found it only now. Long live the BBS file archives!
This is so awesome! 😀 I’d be cool if you could download an entire archive of this at once, though.
But one thing that puzzles me is the “mtswslnkmcjklsdlsbdmMICROSOFT” string. There is an article about it here. It is definitely worth a read: http://www.os2museum.com/wp/mtswslnk/