Files
IBAFLang/IBAF-Tests/IBAF-1/scopes.ibaf

13 lines
102 B
Plaintext

int x =10*10;
{
int y = x*x;
print(x);
print(y);
}
if(false){
int y =0;
}
print(y);