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

15 lines
162 B
Plaintext

int add (int a int b){
return (a+b);
}
int add2 (int a int b ){
return (a+b);
}
test{
int y = 3;
while (y=1){
const x = 3;
const x = 4;
}
}