Kind/book/Bool.not.kind2
2024-03-13 22:32:30 -03:00

8 lines
99 B
Plaintext

use Bool.{true,false}
Bool.not (x: Bool) : Bool =
match x {
true: false
false: true
}