mirror of
https://github.com/DarkPlacesEngine/gmqcc.git
synced 2024-11-24 12:51:04 +00:00
14 lines
255 B
C++
14 lines
255 B
C++
void main() {
|
|
float a; a = 1;
|
|
float b; b = 1;
|
|
float c; c = 1;
|
|
float d; d = 1;
|
|
|
|
a &~= 1; // 0
|
|
b &= ~1; // 0
|
|
c &= ~d; // 0
|
|
|
|
print("a: ", ftos(a), "\nb: ",
|
|
ftos(b), "\nc: ",
|
|
ftos(c), "\n");
|
|
}
|