home *** CD-ROM | disk | FTP | other *** search
/ Collection of Hack-Phreak Scene Programs / cleanhpvac.zip / cleanhpvac / PASSRC.ZIP / WRITESM.PAS < prev   
Pascal/Delphi Source File  |  1991-02-04  |  182b  |  16 lines

  1. program Kitty_Cat;
  2.  
  3. begin
  4.    Writeln('This program');
  5.    Writeln('actually does something.');
  6. end.
  7.  
  8.  
  9.  
  10.  
  11. { Result of execution
  12.  
  13. This program
  14. actually does something.
  15.  
  16. }