mirror of
https://github.com/Ed94/Odin.git
synced 2026-07-15 07:31:26 -07:00
Massive Refactor and If statements
This commit is contained in:
+8
-3
@@ -1,6 +1,11 @@
|
||||
int main() {
|
||||
float a = 0.5;
|
||||
float b = 1.5;
|
||||
int c = a < b;
|
||||
int x = 15;
|
||||
int y = 4;
|
||||
x = x & (~y);
|
||||
if (x > 0) {
|
||||
x = 123;
|
||||
} else {
|
||||
x = 321;
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user