home *** CD-ROM | disk | FTP | other *** search
/ The Unsorted BBS Collection / thegreatunsorted.tar / thegreatunsorted / programming / misc_programming / TEST / SIMPLE.ADA < prev   
Encoding:
Text File  |  1990-06-28  |  343 b   |  14 lines

  1. --           Test program for Meridian Ada compiler.            --
  2. --        This program prints the numbers from 1 to 10.         --
  3. --      Copyright (C) 1986 Meridian Software Systems, Inc.      --
  4.  
  5. with ada_io; use ada_io;
  6. procedure simple is
  7. begin
  8.   for i in 1..10 loop
  9.     put(i);
  10.     put(' ');
  11.   end loop;
  12.   new_line;
  13. end;
  14.