2 lines
99 B
Text
2 lines
99 B
Text
def all (p : ℕ → Prop) : Prop := ∀x, p x
|
||
example {p : ℕ → Prop} (h : all p) : p 0 := h 0
|