lean4-htt/old_tests/tests/lean/minimize_errors.lean
2018-04-10 12:56:55 -07:00

16 lines
165 B
Text

def f : nat → nat → nat :=
λ a, a
#check f
def g : nat → nat → nat :=
f
#check g
#print g
def h : nat → nat → nat
| x y := g x y + f y x
#print h