CompilerSysY/testcases/functional/42_empty_stmt.sy
2023-04-30 00:57:11 +08:00

6 lines
53 B
Plaintext

int main() {
int a = 10;
;
return a * 2 + 1;
}