home *** CD-ROM | disk | FTP | other *** search
/ ftp.ee.pdx.edu / 2014.02.ftp.ee.pdx.edu.tar / ftp.ee.pdx.edu / pub / users / Harry / compilers / p3 / tst / stat4.pcat < prev    next >
Text File  |  2005-10-24  |  192b  |  12 lines

  1. (* this is a test of while loop. *)
  2.  
  3. program is
  4.     var i : integer := 0;
  5. begin 
  6.     write("a while loop:");
  7.         while i <= 5 do 
  8.       write("i = ", i);
  9.           i := i + 1;
  10.         end;
  11. end;
  12.