Files
cs420/examples/negate.c
Jeehoon Kang 1b7d25314d Update test
2020-03-17 22:30:16 +09:00

9 lines
135 B
C

int foo(int x, int y, int z){
if (!(x == y)) { return y; }
else { return z; }
}
int main() {
return foo(0, 1, -1) == 1;
}