mirror of
https://github.com/DarkPlacesEngine/gmqcc.git
synced 2024-11-28 06:32:44 +00:00
12 lines
199 B
C++
12 lines
199 B
C++
void main() {
|
|
float x = 5;
|
|
float y = 3;
|
|
float z = x ^ y; // 6
|
|
|
|
float a = 2;
|
|
float b = 10;
|
|
float c = a ^ b; // 8
|
|
|
|
print(ftos(z), "\n");
|
|
print(ftos(c), "\n");
|
|
}
|