lean4-htt/tests/lean/LE.lean
2022-04-13 08:47:21 -07:00

5 lines
101 B
Text

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