Skip to content

tttardigrado/IfTrue

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

IfTrue

Command line interface for building Logic tables from a given logic expression.

Stack

  • Languages: Nim
  • Libraries: cligen

Instalation

  1. Install the Nim language, as explained in this guide

  2. Install cligen by running thefollowing command inside your terminal

$ nimble install cligen
  1. Clone this repository
$ git clone https://github.com/Force4760/IfTrue.git
  1. Build the binary
$ nim c iftrue.nim
  1. [Optional] Add the binary to your path

Syntax

<bool>  ::= <true> | <false>
<true>  ::= "T"
<false> ::= "F"

<var> ::= "A" | "B" | "C" | "D" | "E" | "G" | "H" | "I" | "J" | "K" | "L" | "M" | "N" | "O" | "P" | "Q" | "R" | "S" | "U" | "V" | "W" | "X" | "Y" | "Z"

<and>  ::= <expr>  <andOp>  <expr>
<nand> ::= <expr>  <nandOp> <expr> 
<or>   ::= <expr>  <orOp>   <expr>
<nor>  ::= <expr>  <norOp>  <expr>
<if>   ::= <expr>  <ifOp>   <expr>
<con>  ::= <expr>  <conOp>  <expr>
<iff>  ::= <expr>  <iffOp>  <expr>
<xor>  ::= <expr>  <xorOp>  <expr> 
<not>  ::= <notOp> <expr>

<andOp>  ::= "&&" | "^" 
<nandOp> ::= "~^" | "/"
<orOp>   ::= "||" | "v"
<norOp>  ::= "~v" | "\"
<ifOp>   ::= ">"  | "->" 
<conOp>  ::= "<"  | "<-" 
<iffOp>  ::= "==" | "<->"
<xorOp>  ::= "!=" | "x"
<notOp>  ::= "!"  | "~"

<operation> ::= <and> | <or> | <if> | <con> | <iff> | <nand> | <nor> | <xor> | <not>

<expr> ::= "(" <expr> ")" | <operation> | <var> | <bool>

How To Help

  • Write Tests
  • Report bugs
  • Make feature suggestions
  • Use the software