ts-c-compiler
ts-c-compiler copied to clipboard
Nested scopes
int main() {
int d = 5;
{
int k = 6, j = 7;
}
int k = 5;
}