Files
Odin/examples/test.c
T
2016-08-01 00:34:15 +01:00

7 lines
74 B
C

int main() {
float a = 0.5;
float b = 1.5;
int c = a < b;
return 0;
}