Enter the expression you want to evaluate
The program will create a truth table by cycling through all possible states of the variables
Use single lowercase letters as variables (e.g. w, x, g...)
Examples of syntax:
a+b = a or b
ab = a and b
a(b+c)d = a and (b or c) and d
a' = not a (either a backtick or a single quote will work)
a'bc' = (not a) and b and (not c)
a^b = a xor b
(ab)' = not (a and b)