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