home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD1.mdf / pascal / turbo55 / tp55 / ovrdemo2.pas < prev    next >
Pascal/Delphi Source File  |  1989-05-02  |  246b  |  20 lines

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