/* 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; void calcul(void) { entier i; i = 3; r1=12; r2=13; b = r1 + r2 + i; print(b); } entier main(void) { calcul(); }