| Crates.io | batt |
| lib.rs | batt |
| version | 0.1.0 |
| created_at | 2020-06-22 20:57:54.56073+00 |
| updated_at | 2020-06-22 20:57:54.56073+00 |
| description | Command line program to input boolean expressions and print their truth tables. |
| homepage | |
| repository | https://github.com/GeorgeLS/batt |
| max_upload_size | |
| id | 256855 |
| size | 29,070 |
Batt stands for boolean algebra truth table. This program takes as input an arbitrary boolean algebra expression and prints the truth table for that expression.
i.e
Input:
A && B
Output:
------------
|A|B|A && B|
------------
|0|0| 0|
------------
|0|1| 0|
------------
|1|0| 0|
------------
|1|1| 1|
------------