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