home *** CD-ROM | disk | FTP | other *** search
/ Shareware 1 2 the Maxx / sw_1.zip / sw_1 / PROGRAM / STREAM13.ZIP / OVR1.PAS < prev    next >
Pascal/Delphi Source File  |  1992-03-31  |  178b  |  15 lines

  1. unit ovr1;
  2. {$O+,F+}
  3.  
  4. interface
  5.  
  6. procedure proc1;
  7.  
  8. implementation
  9.  
  10. procedure proc1;
  11. begin
  12.   writeln('This line is being printed by proc1 in unit ovr1.');
  13. end;
  14.  
  15. end.