We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8f06654 commit 021ae98Copy full SHA for 021ae98
README.md
@@ -44,4 +44,16 @@ boolean-table expression "(a -> ~b) == (b | a)"
44
| 0 | 1 | 1 |
45
| 1 | 0 | 1 |
46
| 1 | 1 | 0 |
47
+
48
+OR With step:
49
50
+boolean-table expression "(a -> ~b) == (b | a)" --step
51
52
+# Truth table for (a -> ~b) == (b | a) with steps
53
+| a | b | ~b | b | a | (a -> ~b) == (b | a) |
54
+|----|----|-----|----|---|---------------------|
55
+| 0 | 0 | 1 | 0 | 0 | 0 |
56
+| 0 | 1 | 0 | 1 | 1 | 1 |
57
+| 1 | 0 | 1 | 1 | 1 | 1 |
58
+| 1 | 1 | 0 | 1 | 1 | 0 |
59
```
0 commit comments