lean4-htt/tests/lean/LE.lean

5 lines
100 B
Text

inductive LE' : Nat → Nat → Prop where
| refl (n : Nat) : LE' n n
#check LE'.refl
#print LE'