forked from coolsidd/Compiler-design
-
Notifications
You must be signed in to change notification settings - Fork 0
/
t3.txt
23 lines (23 loc) · 763 Bytes
/
t3.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
program ( )
{
declare list of variables new d w e2 : integer ;
declare v1 : integer ;
declare list of variables abcd ghd2_1 ssd_2_3 : array [ 2 .. 5 ] of integer ;
declare list of variables a1 a2 : integer ;
declare list of variables b1 b2 b3 : boolean ;
declare list of variables u v : array [ 2 .. 5 ] [ 3 .. 6 ] of integer ;
declare list of variables c1 c2 : real ;
declare list of variables m1 m2 m3 : real ;
new = d * e2 + w - 76875 ;
v1 = a1 - a2 * d ;
b1 = b2 &&& b3 ||| b1 ;
c1 = c2 + c1 ;
abcd = ghd2_1 + ssd_2_3 ;
c2 = a1 / a2 * u [ 4 5 ] ;
b1 = c1 &&& d ;
u = u + v ;
c1 = a1 * a2 ;
abcd [ 4 ] = ghd2_1 [ 5 ] + ssd_2_3 [ 2 ] * u ;
m1 = m2 + a1 ;
abcd = ghd2_1 * m1 + b1 ;
}