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

9 lines
114 B
Plaintext

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