BoolCore

By Andrew Owen
Released under the MIT license

Notes:

The 3 basic boolean operation, and/or and not

and ( a b -- a&b )

Boolean And

or ( a b -- a||b )

Boolean OR

not ( a -- not-a )

Boolean NOT

neq ( a b -- not-equal )