Files
mysysy/test/10_test.sy
2025-02-27 23:14:53 +08:00

15 lines
160 B
Plaintext

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