Kind2/base/Decidable.kind
2021-03-01 12:05:11 -03:00

5 lines
66 B
Plaintext

type Decidable <A: Type> {
yep(proof: A)
nop(proof: Not(A))
}