blob: 2f6b9dd1d8208cdc4acc14691af228bbb21b4f2d (
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 a;
entier main(void) {
entier a,b,res;
a = 2;
b = 3;
res = a - b;
print(res);
}
|