compilator-2000/test.c
Arnaud Vergnet a1c0f7a19f add if
2021-04-06 18:17:10 +02:00

12 lines
173 B
C

int main(){
int x, y, z;
const PL5_op, b, c;
x = 2;
printf(x);
y = 3 + 3 + x;
if (x == 2) {
printf(x);
printf(y);
}
x = 3;
}