aboutsummaryrefslogtreecommitdiff
path: root/res/test_global.tpc
blob: 789f2907dc935f03ca2b3a6f40083ee7ba9e6f9e (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 r1,b,s,c,r2 ;
caractere letter, digit, punct; 

entier main(void)  {
   r1=12;
   r2=13;
   b = r1 + r2;
   print(b);
}