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