home *** CD-ROM | disk | FTP | other *** search
/ ProfitPress Mega CDROM2 …eeware (MSDOS)(1992)(Eng) / ProfitPress-MegaCDROM2.B6I / PROG / PASCAL / PASTUT24.ZIP / PTUTRSRC.ZIP / UGLYFORM.PAS < prev    next >
Encoding:
Pascal/Delphi Source File  |  1989-12-01  |  468 b   |  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.