CompilerSysY/testcases/functional_test/01_var_defn.sy
2023-05-08 21:15:52 +08:00

6 lines
39 B
Plaintext

int a;
int main(){
a=10;
return 0;
}