aboutsummaryrefslogtreecommitdiff
path: root/res/test_return.tpc
blob: f4502030e27532ef7c98dfbced3eb8f8de98bb5e (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; 

caractere test(void){
}

entier main(void)  {
	letter = test();
	print(letter);
	return 0;
}