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