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

17 lines
181 B
Plaintext

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