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

16 lines
175 B
Plaintext

int add (int a int b){
return (a+b);
}
int add2 (int a int b ){
return (a+b);
}
test{
int x = 3;
if (x < 3){
rat x = [4/2];
}else{
bool x = false;
}
}