Enter your boolean expression, e.g.
(A or not B) && !C
or complex variables:
"xor == 2" && "foo(22)"
.
You can also use T
for true and F
for false.
Keyword | Meaning |
---|---|
and, &&, ∧ | Logical AND |
or, ||, ∨ | Logical OR |
not, !, ¬ | Logical NOT |
T | Logical constant true |
F | Logical constant false |
( ) | Grouping of expressions |
Simple Variable | Identifiers like A, B, myVar |
"Complex Variable" | Any expression with spaces or symbols like "xor == 2" |