mirror of
https://github.com/DarkPlacesEngine/gmqcc.git
synced 2024-11-24 04:41:25 +00:00
15 lines
255 B
C++
15 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");
|
||
|
}
|