lily/programs/not.lily

7 lines
91 B
Plaintext
Raw Normal View History

2019-06-04 17:12:24 -07:00
defn not b = {
case b of {
False -> { True }
True -> { False }
}
}