Suppress comparison of booleans
We claim that objects of boolean type have no numerical value. However, this program is evaluated as it would be in Python:
a = true > false
b = false > true
c = false != true
d = false == true
print(a, b, c, d)
The latter two do not require numerical values but maybe still make no practical sense even in boolean expressions and variables.