projet-traduction-langage/fichiersRat/src-rat-tds-test/testUtilisation7.rat

9 lines
116 B
Plaintext
Raw Normal View History

2021-11-24 13:13:45 +00:00
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);
}