lily/programs/not.lily

7 lines
91 B
Plaintext

defn not b = {
case b of {
False -> { True }
True -> { False }
}
}