blob: f3b6705797a12c72b5d80602e70f774b0c372d88 (
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);
}
|