home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 9 / 09.iso / l / l044 / 4.ddi / DEMOS.ZIP / OVRDEMO1.PAS < prev    next >
Encoding:
Pascal/Delphi Source File  |  1990-10-23  |  242 b   |  20 lines

  1.  
  2. { Copyright (c) 1985,90 by Borland International, Inc. }
  3.  
  4. {$O+,F+}
  5. unit OvrDemo1;
  6. { This unit is used by OVRDEMO.PAS }
  7.  
  8. interface
  9.  
  10. procedure Write1;
  11.  
  12. implementation
  13.  
  14. procedure Write1;
  15. begin
  16.   Writeln('One...');
  17. end;
  18.  
  19. end.
  20.