Skip to content

Latest commit

 

History

History
17 lines (15 loc) · 357 Bytes

README.md

File metadata and controls

17 lines (15 loc) · 357 Bytes

Truth table builder for given simple logical expression.

Support for variable names

The parser part supports all single-char alphabetical variable names:

'a'..='z'

and operation signs:

'∧'
'∨'
'¬' 
'('
')'

The program part supports variable names x, y, z, w, but it is easily extendable to support any number of variable names.