lean4-htt/tests/lean/let3.lean
2017-05-25 18:24:16 -07:00

14 lines
142 B
Text

--
constant f : nat → nat → nat → nat
#check
let a : nat := 10
in f a 10
/-
#check
let a := 10,
b := 10
in f a b 10
-/