logic-con
v1.0.2
Published
Console where you can enter boolean logic expressions and have it check to see if they are equivalent to other expressions, or just print out a truth table.
Downloads
2
Readme
logic-con
Console where you can enter boolean logic expressions and have it check to see if they are equivalent to other expressions, or just print out a truth table.
See man logic-con
for details on usage.
==> tab a && (b || c)
a │ b │ c │ a && (b || c)
T │ T │ T │ T
T │ T │ F │ T
T │ F │ T │ T
T │ F │ F │ F
F │ T │ T │ F
F │ T │ F │ F
F │ F │ T │ F
F │ F │ F │ F