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 / expr5.pcat < prev    next >
Text File  |  2005-10-24  |  272b  |  10 lines

  1. program is
  2.   var x : boolean := true; y:= false;
  3.   begin
  4.     write (x," ",  not x, " ", x and x, " ", x or x);
  5.     write (y," ",  not y, " ", y and y, " ", y or y);
  6.     write (x and y, " ", x or y, " ", y and x, " ", y or x);
  7.     write (x and not (x or x and x));
  8.   end;
  9.  
  10.