Closed TimeTravelPenguin closed 3 years ago
For example, given:
variable {p : Prop} variable {q : Prop} theorem t1 (hp : p) (hq : q) : p := hp
#check t1 yields: t1 : ?m.57 → ?m.58 → ?m.571
#check t1
t1 : ?m.57 → ?m.58 → ?m.571
#print t1 yields:
#print t1
theorem Demo.t1 : ∀ {p q : Prop}, p → q → p := fun {p q} hp hq => hp
For example, given:
#check t1
yields:t1 : ?m.57 → ?m.58 → ?m.571
#print t1
yields: