Files
mysysy/test/10_test.sy
2025-06-24 03:23:45 +08:00

15 lines
198 B
Plaintext

//test file for backend lab
int main() {
const int a = 1;
const int b = 2;
int c;
if (a != b)
c = b - a + 20; // 21 <- this
else
c = a * b + b + b + 10; // 16
return c;
}