Skip to content

Commit 021ae98

Browse files
committed
feat: update README.md
1 parent 8f06654 commit 021ae98

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

README.md

+12
Original file line numberDiff line numberDiff line change
@@ -44,4 +44,16 @@ boolean-table expression "(a -> ~b) == (b | a)"
4444
| 0 | 1 | 1 |
4545
| 1 | 0 | 1 |
4646
| 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 |
4759
```

0 commit comments

Comments
 (0)