5 lines
100 B
Text
5 lines
100 B
Text
inductive LE' : Nat → Nat → Prop where
|
|
| refl (n : Nat) : LE' n n
|
|
|
|
#check LE'.refl
|
|
#print LE'
|