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

12 lines
110 B
Plaintext
Raw Normal View History

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