Files
mysysy/test/10_test.sy
2025-03-10 21:43:20 +08:00

15 lines
150 B
Plaintext

//test file for backend lab
int main() {
int a;
const int b = 2;
int c;
if (a == b)
c = a + b;
else
c = a * b;
return c;
}