aboutsummaryrefslogtreecommitdiff
path: root/res/test_table_symbols_ok.tpc
blob: b2cc31e05e27ae314fec6eefa055f0e797997d5a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* 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=24;
   b=r1+r2;
   punct='.';
   return b;
}