Files
mysysy/test/10_test.sy

15 lines
154 B
Plaintext

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