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

11 lines
110 B
Plaintext
Raw Normal View History

2021-11-24 13:13:45 +00:00
int add (int a int b){
return (a+b);
}
int add2 (int a int b ){
return (a+b);
}
test{
add = add2;
}