7 lines
91 B
Plaintext
7 lines
91 B
Plaintext
defn not b = {
|
|
case b of {
|
|
False -> { True }
|
|
True -> { False }
|
|
}
|
|
}
|