projet-traduction-langage/fichiersRat/src-rat-type-test/testAppel5.rat
2021-11-24 14:13:45 +01:00

10 lines
128 B
Plaintext

int add1 (int x int y){
int z = (x+y);
return (z+1);
}
test{
const z = 3;
int x = call add1 ((z+2) call add1 (8 5));
}