aboutsummaryrefslogtreecommitdiff
path: root/res/test_parameters_ok.tpc
blob: 479fb60af48bdd4b7e657c3957da8471e32f60f8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* test-table-symboles.tpc */

/* Test file for simplified translator of a declaration of variables in C */

void test2(caractere x,caractere y,caractere z){
	print(x);
	print(y);
	print(z);
}

void test(void){
	test2('a','b','c');
}

entier main(void)  {
	test();
	return 0;
}