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

7 lines
82 B
Plaintext

//test sub
const int a = 10;
int main(){
int b;
b = 2;
return b - a;
}