mirror of
https://github.com/DarkPlacesEngine/gmqcc.git
synced 2024-11-24 12:51:04 +00:00
8 lines
215 B
C++
8 lines
215 B
C++
void(float a, float b) main = {
|
|
if (a == b) print("eq,");
|
|
if (a != b) print("ne,");
|
|
if (a > b) print("gt,");
|
|
if (a < b) print("lt,");
|
|
if (a >= b) print("ge,");
|
|
if (a <= b) print("le,");
|
|
};
|