home *** CD-ROM | disk | FTP | other *** search
- Unit One;
- { First unit in the example program. Does not depend on any }
- { other unit. }
-
- {$O+,F+}
-
- Interface
-
- Procedure One1;
-
- Implementation
-
- Procedure One1;
- { Do-Nothing procedure that should NEVER BE EXECUTED! Its }
- { only purpose is to determine the order of the units within }
- { the OVR file produced by Turbo Pascal. }
- Begin
- Inline( $90/$01/$90 );
- End;
-
- End.