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

9 lines
116 B
Plaintext

int add (int a int b){
return (a+b);
}
test{
const x = 3;
rat z = [4/2];
int r = call add ((x+1) num z);
}