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

  1. with Text_IO;
  2. use Text_IO;
  3.  
  4. procedure SomeOut is
  5.  
  6. begin
  7.  
  8.    Put("This is a line of text.");
  9.  
  10. end SomeOut;
  11.  
  12.  
  13.  
  14.  
  15. -- Result of execution
  16.  
  17. -- This is a line of text.
  18.  
  19.