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

  1. program is
  2.   var a, b : integer := 1;  
  3.   var x, y : integer := 1.234;  
  4.   begin
  5.     a := b * b + - 3 * - 2;
  6.     x := x - y - (x - y) + 4.321;
  7.     write ("a = ", a, "x = ", x);
  8.   end;
  9.