projet-traduction-langage/fichiersRat/src-rat-type-test/testRetourFonction3.rat

14 lines
141 B
Plaintext
Raw Normal View History

2021-11-24 13:13:45 +00:00
int add1 (int x int y){
int z = (x+y);
if (true) {
return (z+1);
} else {
return x;
}
}
test{
int x = call add1 (3 4);
}