home *** CD-ROM | disk | FTP | other *** search
/ Turbo Toolbox / Turbo_Toolbox.iso / turbo5 / ovrdemo2.pas < prev    next >
Pascal/Delphi Source File  |  1988-10-09  |  244b  |  20 lines

  1.  
  2. { Copyright (c) 1985, 88 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.