home *** CD-ROM | disk | FTP | other *** search
/ Collection of Hack-Phreak Scene Programs / cleanhpvac.zip / cleanhpvac / PASANS.ZIP / CH02_1.PAS next >
Pascal/Delphi Source File  |  1991-02-04  |  181b  |  16 lines

  1.                             (* Chapter 2 - Programming exercise 1 *)
  2. program My_Name;
  3.  
  4. begin
  5.    Writeln('John Q. Doe')
  6. end.
  7.  
  8.  
  9.  
  10.  
  11. { Result of execution
  12.  
  13. John Q. Doe
  14.  
  15. }
  16.