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

8 lines
116 B
Plaintext

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