@Kha The transition has begun :) I found and fixed a few bugs, but it is going well so far.
4 lines
113 B
Text
4 lines
113 B
Text
new_frontend
|
|
|
|
def all (p : Nat → Prop) : Prop := ∀x, p x
|
|
example {p : Nat → Prop} (h : all p) : p 0 := h 0
|