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

10 lines
102 B
Plaintext
Raw Normal View History

2021-11-24 13:13:45 +00:00
int add (int x int y){
int z = y;
return (x+z);
}
test{
int x = 1;
print call add (x x);
}