kempe-0.2.0.9: test/examples/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 ]
%foreign armabi not
%foreign armabi eq