home *** CD-ROM | disk | FTP | other *** search
- { File: TestDate.PAS
- Author: David N. Dubois
- Date: 1988.04.16
-
- Program to demonstate unit FastDate.
- Computes the number of days since the IBM PC was announced. }
-
- program TestDate;
- uses
- FastDate;
- var
- IBMPC : DateType;
- Now : DateType;
- begin
- DateIs ( IBMPC, 1981, August, 12 );
- Today ( Now );
- writeln ( ' IBM PC was announced: ', DateToString ( IBMPC ) );
- writeln ( ' Today is: ', DateToString ( Now ) );
- writeln ( 'Days since announcement: ', DaysBetweenDates ( IBMPC, Now ) );
- end.