Files
IBAFLang/IBAF-Tests/IBAF-1/scopes.ibaf
2024-03-10 09:53:47 +01:00

11 lines
100 B
Plaintext

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