aboutsummaryrefslogtreecommitdiff
path: root/res/test_read_ok.tpc
blob: 6ad3632a1ef84372d8707a4c361cfb821842d3c8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* 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)  {
	caractere r1;
	readc(r1);
	print(r1);
	return 0;
}