packages feed

kempe-0.1.0.0: lib/bool.kmp

not : Bool -- Bool
    =: [
    { case
        | True  -> False
        | False -> True
    }
]

eq : Bool Bool -- Bool
   =: [ xor not ]

nand : Bool Bool -- Bool
     =: [ & not ]

nor : Bool Bool -- Bool
    =: [ || not ]