Create reflexivity.kind

This commit is contained in:
Ferran Delgà 2021-12-04 19:03:14 +01:00 committed by GitHub
parent 1a2ef75255
commit 7218d9f2e0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -0,0 +1,8 @@
Nat.Order.refl(a: Nat): Equal<Bool>(Nat.lte(a, a), true)
case a {
zero:
Equal.refl<Bool>(true)
succ:
let ind = Nat.Order.refl(a.pred)
ind
}: Equal<Bool>(Nat.lte(a, a), true)