mirror of
https://github.com/odin-lang/Odin.git
synced 2026-01-03 11:42:28 +00:00
12 lines
115 B
C
12 lines
115 B
C
int main() {
|
|
int x = 15;
|
|
int y = 4;
|
|
x = x & (~y);
|
|
if (x > 0) {
|
|
x = 123;
|
|
} else {
|
|
x = 321;
|
|
}
|
|
return 0;
|
|
}
|