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

15 lines
160 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{
int y = 3;
while (y=1){
const x = 3;
int x = 4;
}
}