blob: adb097a833a0dc480618f6b0f03b91e5d206a3e6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
/* test-table-symboles.tpc */
/* Test file for simplified translator of a declaration of variables in C */
entier main(void) {
entier bool1,bool2;
bool1 = 0;
bool2 = 0;
if(bool1 == bool2){
print(0);
}
}
|