home *** CD-ROM | disk | FTP | other *** search
/ Chip 1995 March / CHIP3.mdf / programm / prog2 / goodform.ada < prev    next >
Encoding:
Text File  |  1991-07-01  |  486 b   |  27 lines

  1. with Text_IO;
  2. use Text_IO;
  3.  
  4. procedure GoodForm is
  5.  
  6. begin
  7.  
  8.    Put("Good form ");
  9.    Put          ("can aid in ");
  10.    Put                     ("understanding a program,");
  11.    New_Line;
  12.    Put("and bad form ");
  13.    Put             ("can make a program ");
  14.    Put                                ("unreadable.");
  15.    New_Line;
  16.  
  17. end GoodForm;
  18.  
  19.  
  20.  
  21.  
  22. -- Result of execution
  23.  
  24. -- Good form can aid in understanding a program,
  25. -- and bad form can make a program unreadable.
  26.  
  27.