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

12 lines
119 B
Plaintext

int add1 (int x int y){
int z = (x+y);
while (true) {
return false;
}
}
test{
int x = call add1 (3 4);
}