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

9 lines
96 B
Plaintext
Raw Normal View History

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