home *** CD-ROM | disk | FTP | other *** search
/ BURKS 2 / BURKS_AUG97.ISO / BURKS / LANGUAGE / ADA / LOVELACE / make_hi.adb < prev    next >
Text File  |  1996-10-01  |  194b  |  12 lines

  1.  
  2. with Text_IO;
  3. use  Text_IO;
  4.  
  5. procedure Make_Hi is
  6.   New_File : File_Type;
  7. begin
  8.   Create(New_File, Out_File, "hi");
  9.   Put_Line(New_file, "Hi, this is a test!");
  10.   Close(New_File);
  11. end Make_Hi;
  12.