mirror of
https://github.com/Ed94/Odin.git
synced 2026-06-13 01:21:38 -07:00
7 lines
74 B
C
7 lines
74 B
C
int main() {
|
|
float a = 0.5;
|
|
float b = 1.5;
|
|
int c = a < b;
|
|
return 0;
|
|
}
|