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

  1. program Ugly_Programming_Style;begin  Write('Programming style ')
  2. ;Write                   ('is a matter of ');
  3. Writeln('personal choice');Write('Each person ');
  4. Write('can choose ');Writeln
  5. ('his own style');Write('He can be ');Write
  6.     ('very clear, or ');
  7. Writeln('extremely messy');end.
  8.  
  9.  
  10.  
  11.  
  12. { Result of execution
  13.  
  14. Programming style is a matter of personal choice
  15. Each person can choose his own style
  16. He can be very clear, or extremely messy
  17.  
  18. }
  19.