mirror of
https://github.com/DarkPlacesEngine/gmqcc.git
synced 2024-11-23 20:33:05 +00:00
14 lines
353 B
Cheetah
14 lines
353 B
Cheetah
I: truth-flags-2.qc
|
|
D: logic flags
|
|
T: -execute
|
|
C: -std=fteqcc
|
|
M: ! & | i N
|
|
M: 'str', 'str' -> 0 1 1 1 0
|
|
M: 'str', '' -> 0 1 1 1 0
|
|
M: 'str', 0 -> 0 0 1 1 0
|
|
M: '', 'str' -> 1 1 1 1 0
|
|
M: '', '' -> 1 1 1 1 0
|
|
M: '', 0 -> 1 0 1 1 0
|
|
M: 0, 'str' -> 1 0 1 0 1
|
|
M: 0, '' -> 1 0 1 0 1
|
|
M: 0, 0 -> 1 0 0 0 1
|